added settings for router

This commit is contained in:
Kostya
2023-11-12 22:04:09 +03:00
parent 0c9333f5a5
commit 45b5015a89
3 changed files with 15 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
import router from "@/router/router";
const app = createApp(App)
app.use(router)
app.mount('#app')