123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // import App from './App'
- // // #ifndef VUE3
- // import Vue from 'vue'
- // Vue.config.productionTip = false
- // App.mpType = 'app'
- // const app = new Vue({
- // ...App
- // })
- // app.$mount()
- // // #endif
- // // #ifdef VUE3
- // import { createSSRApp } from 'vue'
- // export function createApp() {
- // const app = createSSRApp(App)
- // return {
- // app
- // }
- // }
- // // #endif
- import Vue from 'vue'
- import App from './App'
- Vue.config.productionTip = false
- App.mpType = 'app'
- // 引入全局uView
- import uView from 'uview-ui'
- Vue.use(uView)
- // 引入全局tabbar
- import tabBar from 'components/tabbar.vue'
- Vue.component('tab-bar', tabBar)
- const app = new Vue({
- ...App
- })
- app.$mount()
|