[+] Template

This commit is contained in:
Azalea (on HyDEV-Daisy)
2022-04-16 01:21:29 -04:00
commit f0241c9b89
20 changed files with 1123 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from "./router";
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
createApp(App).use(router).use(ElementPlus).mount('#app')