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.
23 lines
570 B
23 lines
570 B
export default [
|
|
{
|
|
path: '/demo',
|
|
name: 'Demo',
|
|
component: () => import('@/layouts/default.vue'),
|
|
meta: {
|
|
title: '组件示例',
|
|
icon: 'home-fill',
|
|
},
|
|
children: [
|
|
{
|
|
path: 'sortable',
|
|
name: 'SortableTableDemo',
|
|
component: () => import('@/views/demo/sortableTableDemo.vue'),
|
|
meta: {
|
|
title: '拖拽排序',
|
|
icon: 'home-fill',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|