Files
ClassContent/历届学生/front-end-team-11/项目开发/上课项目/uniapp-tpl/main.js
2024-09-27 02:06:13 +08:00

16 lines
256 B
JavaScript

import App from './App'
import Vue from 'vue'
import _ from './serve/_'
import utils from './utils'
Vue.prototype.$http = _
Vue.prototype.$util = utils
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()