You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
489 B
19 lines
489 B
|
|
const router_modular = [
|
|
{
|
|
path: '/',
|
|
name: 'login',
|
|
component: () => import('@/views/login')
|
|
},
|
|
{
|
|
path: '/list',
|
|
name: 'list',
|
|
component: () => import(/* webpackChunkName: "about" */ '@/views/vegetableList.vue')
|
|
},
|
|
{
|
|
path: '/vegetableDetails',
|
|
name: 'vegetableDetails',
|
|
component: () => import(/* webpackChunkName: "about" */ '@/views/vegetableDetails.vue')
|
|
}
|
|
]
|
|
export default router_modular
|