初始化

This commit is contained in:
ch197511161
2025-10-27 14:11:43 +08:00
commit ebf3d44d99
8 changed files with 3371 additions and 0 deletions

9
src/main.js Normal file
View File

@@ -0,0 +1,9 @@
import { createApp } from 'vue'
import App from './App.vue'
import './style.css'
// 创建Vue应用实例
const app = createApp(App)
// 挂载应用
app.mount('#app')