Files
waveform-analysis/src/router.ts
李启源 a12002ba11
All checks were successful
Package component / package (push) Successful in 9m22s
feat(chart): support fixed y-axis domains
2026-07-29 15:50:25 +08:00

22 lines
439 B
TypeScript

import { createRouter, createWebHashHistory, type RouteRecordRaw } from 'vue-router'
import App from './App.vue'
export const routes: RouteRecordRaw[] = [
{
path: '/',
name: 'workspace',
component: App,
},
{
path: '/fixed-y-domain',
name: 'fixed-y-domain',
component: () => import('./views/FixedYDomainDemo.vue'),
},
]
export const router = createRouter({
history: createWebHashHistory(),
routes,
})