| 12345678910111213141516171819202122232425 | 
// #ifndef VUE3import Vue from 'vue'import App from './App'Vue.config.productionTip = falseApp.mpType = 'app'const app = new Vue({    ...App})app.$mount()// #endif// #ifdef VUE3import { createSSRApp } from 'vue'import App from './App.vue'export function createApp() {  const app = createSSRApp(App)  return {    app  }}// #endif
 |