feat(projects): 添加插件示例:剪贴板

This commit is contained in:
恕瑞玛的皇帝
2024-05-07 15:38:07 +08:00
committed by Soybean
parent 4d17cfdcd3
commit 019f80faef
7 changed files with 67 additions and 2 deletions

View File

@@ -330,6 +330,29 @@ export const generatedRoutes: GeneratedRoute[] = [
}
]
},
{
name: 'plugin',
path: '/plugin',
component: 'layout.base',
meta: {
title: '插件示例',
i18nKey: 'route.plugin',
order: 7,
icon: 'clarity:plugin-line',
},
children: [
{
name: 'plugin_copy',
path: '/plugin/copy',
component: 'view.plugin_copy',
meta: {
title: '剪贴板',
icon: 'mdi:clipboard-outline',
i18nKey: 'route.plugin_copy',
}
}
]
},
{
name: 'user-center',
path: '/user-center',