import { createRouter, createWebHashHistory, createWebHistory } from 'vue-router'; import { qiankunWindow } from 'vite-plugin-qiankun/dist/helper'; const router = createRouter({ history: createWebHashHistory(qiankunWindow.__POWERED_BY_QIANKUN__ ? '/highScoreVisualization' : '/'), routes: [ { path: '/highScoreVisualization', name: 'highScoreVisualization', component: () => import('../views/highScore/dailyMonitoring/index.vue') } ] }) export default router;