初始化底座

This commit is contained in:
aixianling
2024-05-22 17:03:33 +08:00
parent aba9c3a8fe
commit 27ea4bc032
14 changed files with 342 additions and 62 deletions

11
src/main.js Normal file
View File

@@ -0,0 +1,11 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import './assets/main.css'
new Vue({
router,
render: (h) => h(App)
}).$mount('#app')