frontend/src/router/authentication.js

9 lines
335 B
JavaScript
Raw Normal View History

import authentication from '../views/authentication_login.vue'
import register from '../views/authentication_register.vue'
2024-06-24 03:56:21 +00:00
export default [
{ path: '/', component: authentication },
{ path: '/login', component: authentication },
{ path: '/register', component: register },
2024-06-24 03:56:21 +00:00
// { path: '/profile', component: Profile }
]