Data tables for brand and category added to admin pages

This commit is contained in:
2024-09-25 15:54:45 +02:00
parent 0856540441
commit d36dbced8e
4 changed files with 68 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import DashboardPage from "@/pages/admin/dashboardPage/index.vue"
import CategoriesPage from "@/pages/admin/categoriesPage/index.vue"
import AccountsPage from "@/pages/admin/accountsPage/index.vue"
import ProductsPage from "@/pages/admin/productsPage/index.vue"
import BrandsPage from "@/pages/admin/brandsPage/index.vue"
export default [
{
@@ -19,5 +20,9 @@ export default [
{
path: '/admin/products',
component: ProductsPage
},
{
path: '/admin/brands',
component: BrandsPage
}
]