feat: Add Search component and add search demo

This commit is contained in:
陈凯龙
2022-01-28 11:36:18 +08:00
parent 8a958cd71d
commit 33eca8a97d
8 changed files with 281 additions and 8 deletions

View File

@@ -131,6 +131,14 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
}
]
},
{
path: 'search',
component: () => import('@/views/Components/Search.vue'),
name: 'Search',
meta: {
title: t('router.search')
}
},
{
path: 'icon',
component: () => import('@/views/Components/Icon.vue'),