views initial templates
This commit is contained in:
parent
6d9b801555
commit
48fcf38b92
7 changed files with 103 additions and 1 deletions
|
|
@ -1,6 +1,12 @@
|
||||||
import { createRouter, createWebHistory } from 'vue-router'
|
import { createRouter, createWebHistory } from 'vue-router'
|
||||||
import StartPageView from '../views/StartPageView.vue'
|
import StartPageView from '../views/StartPageView.vue'
|
||||||
import LoginView from '@/views/LoginView.vue'
|
import LoginView from '@/views/LoginView.vue'
|
||||||
|
import RegisterView from '@/views/RegisterView.vue'
|
||||||
|
import CollectionView from '@/views/CollectionView.vue'
|
||||||
|
import ChartsView from '@/views/ChartsView.vue'
|
||||||
|
import ParsersView from '@/views/ParsersView.vue'
|
||||||
|
import PersonalView from '@/views/PersonalView.vue'
|
||||||
|
import AddMerchView from '@/views/AddMerchView.vue'
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
history: createWebHistory(import.meta.env.BASE_URL),
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||||||
|
|
@ -14,7 +20,37 @@ const router = createRouter({
|
||||||
path: '/login',
|
path: '/login',
|
||||||
name: 'login',
|
name: 'login',
|
||||||
component: LoginView,
|
component: LoginView,
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
path: '/register',
|
||||||
|
name: 'register',
|
||||||
|
component: RegisterView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/personal',
|
||||||
|
name: 'personal',
|
||||||
|
component: PersonalView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/collection',
|
||||||
|
name: 'collection',
|
||||||
|
component: CollectionView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/charts',
|
||||||
|
name: 'charts',
|
||||||
|
component: ChartsView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/parsers',
|
||||||
|
name: 'parsers',
|
||||||
|
component: ParsersView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/add-merch',
|
||||||
|
name: 'addMerch',
|
||||||
|
component: AddMerchView,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
11
src/views/AddMerchView.vue
Normal file
11
src/views/AddMerchView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Add merch view
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
11
src/views/ChartsView.vue
Normal file
11
src/views/ChartsView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Charts view
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
11
src/views/CollectionView.vue
Normal file
11
src/views/CollectionView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Collection View
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
11
src/views/ParsersView.vue
Normal file
11
src/views/ParsersView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Parsers view
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
11
src/views/PersonalView.vue
Normal file
11
src/views/PersonalView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Personal view
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
11
src/views/RegisterView.vue
Normal file
11
src/views/RegisterView.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Register view
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue