Files
dou_fire/main.js
唐明明 788c1e7af4 main
2024-01-03 11:19:34 +08:00

27 lines
482 B
JavaScript

import App from './App'
import Vue from 'vue'
import uView from "uview-ui";
import store from './store'
import { router, RouterMount } from 'router'
import Mylink from './node_modules/uni-simple-router/dist/link.vue'
import { INIT } from './im/INIT'
// (async () => {
Vue.component('my-link', Mylink)
Vue.use(uView)
Vue.use(router)
// await INIT();
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
// })()