2026-02-06 17:22:22 +08:00
|
|
|
/*
|
|
|
|
|
* 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';
|
2026-02-06 17:22:22 +08:00
|
|
|
|
|
|
|
|
export const routes: RouteRecordRaw[] = [
|
|
|
|
|
...routers,
|
|
|
|
|
]
|