12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import type { RouterConfig } from '@nuxt/schema'
|
|
|
|
export default <RouterConfig> {
|
|
routes: _routes => [
|
|
{
|
|
name: 'index',
|
|
path: '/:invoiceId',
|
|
component: () => import('~/pages/index.vue').then(r => r.default || r),
|
|
},
|
|
],
|
|
}
|