feat: Add Descriptions component and add Descriptions demo

This commit is contained in:
陈凯龙
2022-02-11 15:11:15 +08:00
parent af9fc0a4ad
commit 7ad46f828d
10 changed files with 340 additions and 38 deletions

View File

@@ -193,6 +193,14 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
title: t('router.search')
}
},
{
path: 'descriptions',
component: () => import('@/views/Components/Descriptions.vue'),
name: 'Descriptions',
meta: {
title: t('router.descriptions')
}
},
{
path: 'image-viewer',
component: () => import('@/views/Components/ImageViewer.vue'),