1234567891011121314151617181920212223242526 |
- // #ifndef VUE3
- import Vue from 'vue'
- import App from './App'
- // 引入自定义组件
- import NavBar from './components/nav-bar.vue'
- Vue.config.productionTip = false
- App.mpType = 'app'
- Vue.component('navbar', NavBar)
- const app = new Vue({
- ...App
- })
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- import App from './App.vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|