added vue component

This commit is contained in:
2023-09-15 19:58:59 +02:00
parent b3061ad79a
commit 018bbf3918
34 changed files with 4134 additions and 458 deletions
+17
View File
@@ -0,0 +1,17 @@
import './assets/main.css'
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')
app.exports = {
devServer: {
proxy: 'https://localhost:8001'
} }