import App from './App' import store from '@/store/store.js' import ios from '@/ios/index.js' import lib from "./common/lib.js" // #ifndef VUE3 import Vue from 'vue' // Vue.prototype.$onLaunched = new Promise(resolve => { // Vue.prototype.$isResolve = resolve // }) Vue.config.productionTip = false // Vue.prototype.lib=lib // Vue.use(fb); App.mpType = 'app' const app = new Vue({ ...App, store, ios, lib, }) app.$mount() // #endif // #ifdef VUE3 import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) return { app } } // #endif