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'; import Vconsole from "vconsole" // import VConsole from 'vconsole' const vConsole = new Vconsole(); // console.log('vConsole is running!'); 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