mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const scrollReveal: AppRouteRecordRaw = {
|
|
path: '/scroll-reveal',
|
|
name: 'ScrollReveal',
|
|
component: () => import('@/views/scroll-reveal/index'),
|
|
meta: {
|
|
i18nKey: 'scrollReveal',
|
|
icon: 'scroll_reveal',
|
|
hidden: true,
|
|
},
|
|
}
|
|
|
|
export default scrollReveal
|