import type { App } from 'vue'; /** * router * @see https://gitee.com/fant-mini/uni-mini-router */ import { createRouter } from 'uni-mini-router'; import { createRouterGuard } from './guard'; const router = createRouter({ routes: [...ROUTES], // 路由表信息 }); export function setupRouter(app: App) { // Configure router guard createRouterGuard(router); app.use(router); } export { router };