| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | import App from './App'import uView from '@/uni_modules/uview-ui'Vue.use(uView)// 全局 Mixinimport mixin from './common/mixin/mixin'Vue.mixin(mixin) // 全局 Utilimport {	msg,	isLogin,	debounce,	throttle,	prePage,	date} from '@/common/js/util'Vue.prototype.$util = {	msg,	isLogin,	debounce,	throttle,	prePage,	date}// 全局 Storeimport store from './store'Vue.prototype.$store = store// #ifndef VUE3import Vue from 'vue'Vue.config.productionTip = falseApp.mpType = 'app'const app = new Vue({    ...App})app.$mount()// #endif// #ifdef VUE3import { createSSRApp } from 'vue'export function createApp() {  const app = createSSRApp(App)  return {    app  }}// #endif
 |