add:
- legal .md files
- routers
- home view
- rewrite App.vue
- update footer / header
- update features
This commit is contained in:
austnv
2026-06-07 01:19:02 +03:00
parent eb17a3cd67
commit fa8498ef4c
14 changed files with 435 additions and 45 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import './assets/styles.css'
createApp(App).mount('#app')
const app = createApp(App)
app.use(router)
app.mount('#app')