Описание изменений

This commit is contained in:
2025-02-24 18:06:05 +03:00
parent 1f08f07ca5
commit e7a0aacb60
25 changed files with 3299 additions and 1303 deletions

View File

@@ -1,6 +1,8 @@
import { createApp } from 'vue'
import router from './router/index.js'
import App from './App.vue'
// Создаем и монтируем приложение Vue
const app = createApp(App)
app.use(router)
app.mount('#app')