Сделал фронтенд

This commit is contained in:
Ilia Miheev
2026-07-24 21:42:08 +03:00
parent 5c1302a582
commit 572ddc35fc
23 changed files with 13958 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import './styles/theme.css'
import App from './App.vue'
import router from './router'
createApp(App).use(router).use(ElementPlus).mount('#app')