mirror of
https://github.com/DiscordFactory/website-documentation.git
synced 2026-01-20 20:21:35 +01:00
10 lines
326 B
TypeScript
10 lines
326 B
TypeScript
import { RouteRecordRaw } from 'vue-router'
|
|
import GettingStarted from './Getting-started.vue'
|
|
import Starting from './Starting.vue'
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
{ path: '/documentation/getting-started', component: GettingStarted },
|
|
{ path: '/documentation/starting', component: Starting },
|
|
]
|
|
|
|
export default routes |