Open src/router/MainRoutes.ts
src/router/MainRoutes.ts
const MainRoutes = { path: '/main', meta: { requiresAuth: false // Set to false }, redirect: '/main/dashboard/default', component: () => import('@/layouts/full/FullLayout.vue'), children: [ // Other content here ] }; export default MainRoutes;
Last updated 6 months ago