feat: Add Editor component and add editor demo

This commit is contained in:
陈凯龙
2022-02-10 10:04:47 +08:00
parent 17e8e7cda9
commit 3fb3e8da39
10 changed files with 1034 additions and 5 deletions

View File

@@ -166,6 +166,25 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
}
]
},
{
path: 'editor-demo',
component: getParentLayout(),
name: 'EditorDemo',
meta: {
title: t('router.editor'),
alwaysShow: true
},
children: [
{
path: 'editor',
component: () => import('@/views/Components/Editor/Editor.vue'),
name: 'Editor',
meta: {
title: t('router.richText')
}
}
]
},
{
path: 'search',
component: () => import('@/views/Components/Search.vue'),