123456789101112131415161718192021222324252627282930313233343536 |
-
- export default [
- {
- path: '/index',
- name: 'index',
- icon: 'smile',
- layout: false,
- component: './index',
- },
-
- {
- path: '/',
- redirect: '/index',
- },
- {
- path: '*',
- layout: false,
- component: './index',
- },
-
-
-
-
-
- ];
|