diff --git a/software/src/components/navigationItems.vue b/software/src/components/navigationItems.vue index fcb3e01..2db87d7 100644 --- a/software/src/components/navigationItems.vue +++ b/software/src/components/navigationItems.vue @@ -73,6 +73,7 @@ const navRail = defineModel("navRail", { type: Boolean }) + diff --git a/software/src/pages/admin/brandsPage/index.vue b/software/src/pages/admin/brandsPage/index.vue new file mode 100644 index 0000000..c045fd4 --- /dev/null +++ b/software/src/pages/admin/brandsPage/index.vue @@ -0,0 +1,32 @@ + + + \ No newline at end of file diff --git a/software/src/pages/admin/categoriesPage/index.vue b/software/src/pages/admin/categoriesPage/index.vue index 227fe68..67a1d5e 100644 --- a/software/src/pages/admin/categoriesPage/index.vue +++ b/software/src/pages/admin/categoriesPage/index.vue @@ -1,6 +1,35 @@ \ No newline at end of file diff --git a/software/src/router/admin.routes.ts b/software/src/router/admin.routes.ts index a96d062..44ff2ce 100644 --- a/software/src/router/admin.routes.ts +++ b/software/src/router/admin.routes.ts @@ -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 } ] \ No newline at end of file