23 lines
399 B
JavaScript
23 lines
399 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'
|
|
|
|
Vue.component('my-link', Mylink)
|
|
|
|
Vue.use(uView)
|
|
Vue.use(router)
|
|
|
|
Vue.config.productionTip = false
|
|
App.mpType = 'app'
|
|
const app = new Vue({
|
|
store,
|
|
...App
|
|
})
|
|
|
|
app.$mount()
|