1
jhzh
2025-04-20 d157d0892f1ab5517dbe3a08328ccb9c4e446615
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Vue from 'vue'
import App from './App.vue'
import '@/plugins'
import i18n from "./i18n";
import store from './store'
// import { Loading } from 'vant';
 
// import 'element-ui/lib/theme-chalk/index.css'
// import element from './element/index'
// Vue.use(element)
//把vuex定义成全局组件
Vue.prototype.$store = store
Vue.prototype._i18n = i18n;
 
Vue.config.productionTip = false
 
App.mpType = 'app'
let  tests  =  Date.parse( new  Date());
    const app = new Vue({
        ...App,
        i18n,
        store
    })
    app.$mount()
// }