12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
|
|
||
|
export default [
|
||
|
{
|
||
|
path: '/',
|
||
|
component: () => import('./Introduction').then(d => d.default),
|
||
|
},
|
||
|
{
|
||
|
path: '/example',
|
||
|
component: () => import('./Example').then(d => d.default),
|
||
|
},
|
||
|
]
|