generated from VLADIMIR/template_frontend
add pages
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import GamesPage from '@/components/GamesPage.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<GamesPage />
|
||||
</main>
|
||||
</template>
|
||||
@@ -2,7 +2,6 @@
|
||||
import LoginPage from '@/components/LoginPage.vue';
|
||||
</script>
|
||||
|
||||
<!-- Страница авторизации -->
|
||||
<template>
|
||||
<main>
|
||||
<LoginPage />
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
import OfficePage from '@/components/OfficePage.vue';
|
||||
</script>
|
||||
|
||||
<!-- Страница авторизации -->
|
||||
<template>
|
||||
<main>
|
||||
<OfficePage />
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import ScenariosPage from '@/components/ScenariosPage.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<ScenariosPage />
|
||||
</main>
|
||||
</template>
|
||||
@@ -0,0 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import UsersPage from '@/components/UsersPage.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<UsersPage />
|
||||
</main>
|
||||
</template>
|
||||
Reference in New Issue
Block a user