UNPKG

hc-web-log-mon

Version:

基于 JS 跨平台插件,为前端项目提供【 行为、性能、异常、请求、资源、路由、曝光、录屏 】监控手段

20 lines (14 loc) 407 B
import Vue from 'vue' import Router from 'vue-router' import { dynamicRouterMap } from './router.dynamic.js' Vue.use(Router) export const constantRoutes = [...dynamicRouterMap] const createRouter = () => new Router({ // mode: 'history', mode: 'hash', scrollBehavior: () => ({ y: 0 }), routes: constantRoutes }) const router = createRouter() export default router