Login form

This commit is contained in:
2024-09-05 18:12:08 +02:00
parent 4d1eec023d
commit 22cc811ae5
9 changed files with 92 additions and 20 deletions

View File

@@ -2,12 +2,14 @@ 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 LoginPage from "@/pages/loginPage/index.vue"
const routes = [
{ path: '/', component: ProductsPage },
{ path: '/account', component: AccountPage },
{ path: '/orders', component: OrdersPage },
{ path: '/preferences', component: PreferencesPage },
{ path: '/login', component: LoginPage },
]
export default routes