Move software files one directory up, Readme
This commit is contained in:
43
src/router/admin.routes.ts
Normal file
43
src/router/admin.routes.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import DashboardPage from "@/pages/admin/dashboardPage/index.vue"
|
||||
import ConcertsAdminPage from "@/pages/admin/concertsAdminPage/index.vue"
|
||||
import BandsAdminPage from "@/pages/admin/bandsAdminPage/index.vue"
|
||||
import AccountsAdminPage from "@/pages/admin/accountsAdminPage/index.vue"
|
||||
import GenresAdminPage from "@/pages/admin/genresAdminPage/index.vue"
|
||||
import LocationsAdminPage from "@/pages/admin/locationsAdminPage/index.vue"
|
||||
import FilesAdminPage from "@/pages/admin/filesAdminPage/index.vue"
|
||||
import OrdersAdminPage from "@/pages/admin/ordersAdminPage/index.vue"
|
||||
|
||||
export const adminRoutes = [
|
||||
{
|
||||
path: '/admin',
|
||||
component: DashboardPage
|
||||
},
|
||||
{
|
||||
path: '/admin/concerts',
|
||||
component: ConcertsAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/bands',
|
||||
component: BandsAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/accounts',
|
||||
component: AccountsAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/genres',
|
||||
component: GenresAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/locations',
|
||||
component: LocationsAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/files',
|
||||
component: FilesAdminPage
|
||||
},
|
||||
{
|
||||
path: '/admin/orders',
|
||||
component: OrdersAdminPage
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user