| 123456789101112131415161718192021222324252627282930 |
- import App from './App'
-
- // #ifndef VUE3
- import Vue from 'vue'
- import time from '@/commit/item.js';
- import store from '@/store/index.js'
- import uView from '@/uni_modules/uview-ui';
-
- Vue.config.productionTip = false
- Vue.prototype.$time = time
- Vue.prototype.$store = store
- App.mpType = 'app'
- Vue.use(uView);
- const app = new Vue({
- ...App,
- store
- })
- app.$mount()
- // #endif
-
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|