likeshop/uniapp/main.js
小城外的桃李 5e64528893 3.0.3版本
2024-08-15 11:06:13 +08:00

21 lines
476 B
JavaScript

import Vue from 'vue'
import App from './App'
import store from './store'
import {toast, copy} from './utils/tools'
import Cache from './utils/cache'
import minxinsApp from '@/mixins/app'
import uView from "@/components/uview-ui";
Vue.prototype.$toast = toast
Vue.prototype.$copy = copy
Vue.prototype.$Cache = Cache
Vue.config.productionTip = false
Vue.use(uView);
App.mpType = 'app'
Vue.mixin(minxinsApp);
const app = new Vue({
...App,
store
})
app.$mount()