feat: add markdown component

This commit is contained in:
vben
2020-10-19 22:09:03 +08:00
parent 2fbc450414
commit 5fb069f432
8 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import type { MenuModule } from '/@/router/types.d';
const menu: MenuModule = {
orderNo: 500,
menu: {
name: '编辑器',
path: '/editor',
children: [
{
path: '/markdown',
name: 'markdown编辑器',
},
],
},
};
export default menu;