+
+
\ No newline at end of file
diff --git a/abitur_list_client/src/components/Auth.vue b/abitur_list_client/src/components/Auth.vue
new file mode 100644
index 0000000..7c56df8
--- /dev/null
+++ b/abitur_list_client/src/components/Auth.vue
@@ -0,0 +1,83 @@
+
+
+
Авторизация
+
Имя:
+
+
Фамилия:
+
+
Отчество:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/abitur_list_client/src/components/Request.vue b/abitur_list_client/src/components/Request.vue
new file mode 100644
index 0000000..a6cbbba
--- /dev/null
+++ b/abitur_list_client/src/components/Request.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/abitur_list_client/src/main.js b/abitur_list_client/src/main.js
index 01433bc..61610d3 100644
--- a/abitur_list_client/src/main.js
+++ b/abitur_list_client/src/main.js
@@ -1,4 +1,27 @@
import { createApp } from 'vue'
import App from './App.vue'
+import { createRouter, createWebHistory } from "vue-router"
-createApp(App).mount('#app')
+import Auth from './components/Auth'
+import AbiturMain from './components/AbiturMain'
+
+const routes = [
+ {
+ path: '/',
+ component: Auth,
+ name: 'Auth'
+ },
+ {
+ path: '/abitur/:abiturId',
+ name: 'AbiturMain',
+ component: AbiturMain,
+ props: true
+ }
+]
+
+const router = createRouter({
+ routes,
+ history: createWebHistory()
+})
+
+createApp(App).use(router).mount('#app')