2024-07-04 08:47:53 +00:00
|
|
|
import authentication_main from '../views/authentication/authentication_main.vue'
|
|
|
|
|
import register from '../views/authentication/authentication_register.vue'
|
|
|
|
|
import authentication_login from "../views/authentication/authentication_login.vue";
|
2024-06-24 03:56:21 +00:00
|
|
|
export default [
|
2024-07-04 08:47:53 +00:00
|
|
|
{ path: '/main', component: authentication_main },
|
|
|
|
|
{ path: '/login', component: authentication_login },
|
2024-06-29 09:10:39 +00:00
|
|
|
{ path: '/register', component: register },
|
2024-06-24 03:56:21 +00:00
|
|
|
// { path: '/profile', component: Profile }
|
|
|
|
|
]
|