feat(projects): 新版重构完成

This commit is contained in:
Soybean
2022-01-24 00:36:38 +08:00
parent 32a7cc408e
commit 68b42304d5
29 changed files with 1117 additions and 25 deletions

View File

@ -15,6 +15,14 @@ import {
ComponentButton,
ComponentCard,
ComponentTable,
PluginMap,
PluginVideo,
PluginEditorQuill,
PluginEditorMarkdown,
PluginSwiper,
PluginCopy,
PluginIcon,
PluginPrint,
MultiMenuFirstSecond,
MultiMenuFirstSecondNewThird,
About
@ -43,6 +51,8 @@ type ViewComponentKey = Exclude<
| 'document'
| 'document_project'
| 'component'
| 'plugin'
| 'plugin_editor'
| 'multi-menu'
| 'multi-menu_first'
| 'multi-menu_first_second-new'
@ -70,6 +80,14 @@ export function getViewComponent(routeKey: AuthRoute.RouteKey) {
'component_button',
'component_card',
'component_table',
'plugin_map',
'plugin_video',
'plugin_editor_quill',
'plugin_editor_markdown',
'plugin_copy',
'plugin_icon',
'plugin_print',
'plugin_swiper',
'exception_403',
'exception_404',
'exception_500',
@ -95,6 +113,14 @@ export function getViewComponent(routeKey: AuthRoute.RouteKey) {
component_button: ComponentButton,
component_card: ComponentCard,
component_table: ComponentTable,
plugin_map: PluginMap,
plugin_video: PluginVideo,
plugin_editor_quill: PluginEditorQuill,
plugin_editor_markdown: PluginEditorMarkdown,
plugin_copy: PluginCopy,
plugin_icon: PluginIcon,
plugin_print: PluginPrint,
plugin_swiper: PluginSwiper,
exception_403: NoPermission,
exception_404: NotFound,
exception_500: ServiceError,