develop.js 834 Bytes
/* Layout */
import Layout from '@/layout';

const developRoutes = [
    {
        path: '/icon',
        component: Layout,
        children: [
            {
                path: 'index',
                component: () => import('@/views/help/icons/index.vue'),
                name: 'Icon',
                meta: {
                    title: 'Icons',
                    noCache: true
                }
            }
        ]
    },
    {
        path: '/help',
        component: Layout,
        children: [
            {
                path: 'icon',
                component: () => import('@/views/help/icons/index.vue'),
                name: 'Icon',
                meta: {
                    title: 'Icons',
                    noCache: true
                }
            }
        ]
    }
];
export default developRoutes;