2024-06-25 08:22:01 +00:00
|
|
|
import authentication from '../views/authentication_login.vue'
|
2024-06-29 09:10:39 +00:00
|
|
|
import register from '../views/authentication_register.vue'
|
2024-06-24 03:56:21 +00:00
|
|
|
export default [
|
2024-06-29 09:10:39 +00:00
|
|
|
{ path: '/', component: authentication },
|
2024-06-24 11:19:51 +00:00
|
|
|
{ path: '/login', component: authentication },
|
2024-06-29 09:10:39 +00:00
|
|
|
{ path: '/register', component: register },
|
2024-06-24 03:56:21 +00:00
|
|
|
// { path: '/profile', component: Profile }
|
|
|
|
|
]
|