| 1234567891011121314151617181920212223242526272829303132 |
- import type { RouteRecordRaw } from 'vue-router'
- function Layout() {
- return import('@/layouts/index.vue')
- }
- const routes: RouteRecordRaw = {
- path: '/recomendation',
- component: Layout,
- name: 'recomendation',
- meta: {
- title: 'Recomendation Management',
- icon: 'i-ep:starFilled',
- singleMenu: true,
- },
- children: [
- {
- path: '',
- name: 'recomendationIndex',
- component: () => import('@/views/role-management/index.vue'),
- meta: {
- title: 'Role Management',
- menu: false,
- breadcrumb: false,
- activeMenu: '/recomendation',
- },
- },
- ],
- }
- export default routes
|