Files
auto-solution/modeler/src/router/config.ts

15 lines
398 B
TypeScript
Raw Normal View History

/*
* This file is part of the kernelstudio package.
*
* (c) 2014-2025 zlin <admin@kernelstudio.com>
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
import { type RouteRecordRaw } from 'vue-router';
2026-02-08 15:38:50 +08:00
import { routers } from '@/views/behaviour/router';
export const routes: RouteRecordRaw[] = [
...routers,
]