Files
dtx_store/main.js
唐明明 1c6091371e init
2022-06-07 16:37:03 +08:00

31 lines
547 B
JavaScript

/*
* @Description:
* @Author: Aimee·Zhang
* @Date: 2022-01-05 09:01:12
* @LastEditors: Aimee·Zhang
* @LastEditTime: 2022-01-12 16:35:13
*/
import App from './App'
import Vue from 'vue'
import store from './store'
import uView from 'uview-ui'
import filters from './utils/filters.js'
import {
router,
RouterMount
} from 'router'
Vue.use(uView);
Vue.use(router)
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()