yxk_gk_master/main.js

14 lines
237 B
JavaScript
Raw Permalink Normal View History

2025-08-28 15:18:09 +08:00
import Vue from 'vue'
import App from './App'
import Request from './request/js/index'
Vue.config.productionTip = false
Vue.prototype.$http = Request();
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()