init:低代码初始化

This commit is contained in:
lhj
2024-07-26 23:53:38 +08:00
commit 9306a02d1e
20 changed files with 5897 additions and 0 deletions

5
src/main.ts Normal file
View File

@ -0,0 +1,5 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app')