Create product cards, display all on products page

This commit is contained in:
2024-09-06 17:10:21 +02:00
parent 22cc811ae5
commit babf1c77ce
11 changed files with 253 additions and 19 deletions

View File

@@ -1,11 +1,11 @@
import AccountPage from "@/pages/AccountPage.vue";
import OrdersPage from "@/pages/OrdersPage.vue";
import PreferencesPage from "@/pages/preferencesPage/index.vue";
import ProductsPage from "@/pages/ProductsPage.vue";
import ProductsPage from "@/pages/productsPage/index.vue";
import LoginPage from "@/pages/loginPage/index.vue"
const routes = [
{ path: '/', component: ProductsPage },
{ path: '/products', component: ProductsPage },
{ path: '/account', component: AccountPage },
{ path: '/orders', component: OrdersPage },
{ path: '/preferences', component: PreferencesPage },