Move Navigation from NavDrawer to AppBar, redesign page structure and routes
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
<script setup lang="ts">
|
||||
import alertBanner from '@/components/alertBanner.vue';
|
||||
import accountDataCard from './accountDataCard.vue';
|
||||
import accountManagingCard from './accountManagingCard.vue';
|
||||
import addressesCard from './addressesCard.vue';
|
||||
10
software/src/pages/account/accountHomePage/index.vue
Normal file
10
software/src/pages/account/accountHomePage/index.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Account Home
|
||||
|
||||
<v-btn to="/account/edit" >Account Data</v-btn>
|
||||
|
||||
<v-btn to="/account/orders" >Orders</v-btn>
|
||||
</template>
|
||||
@@ -2,5 +2,5 @@
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Help
|
||||
Home
|
||||
</template>
|
||||
6
software/src/pages/shows/eventsPage/index.vue
Normal file
6
software/src/pages/shows/eventsPage/index.vue
Normal file
@@ -0,0 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Events
|
||||
</template>
|
||||
6
software/src/pages/shows/genresPage/index.vue
Normal file
6
software/src/pages/shows/genresPage/index.vue
Normal file
@@ -0,0 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Genres
|
||||
</template>
|
||||
6
software/src/pages/shows/locationsPage/index.vue
Normal file
6
software/src/pages/shows/locationsPage/index.vue
Normal file
@@ -0,0 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Locations
|
||||
</template>
|
||||
6
software/src/pages/shows/searchPage/index.vue
Normal file
6
software/src/pages/shows/searchPage/index.vue
Normal file
@@ -0,0 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Search
|
||||
</template>
|
||||
Reference in New Issue
Block a user