mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
import { LAYOUT } from '@/router/constant/index'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const previewSVGIcons: AppRouteRecordRaw = {
|
|
path: '/svg-icons',
|
|
name: 'PreviewSVGIcons',
|
|
component: () => import('@/views/demo/svg-icons/index'),
|
|
meta: {
|
|
noLocalTitle: 'SVG图标',
|
|
icon: 'other',
|
|
order: 3,
|
|
},
|
|
}
|
|
|
|
export default previewSVGIcons
|