更新.gitignore

This commit is contained in:
2026-07-15 10:04:05 +08:00
parent a5d129cfa0
commit 0e4ed71318
28 changed files with 64 additions and 2191 deletions
-19
View File
@@ -1,19 +0,0 @@
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