import Vue from 'vue' import Router from 'vue-router' import Layout from '../layout/index' const shouye = () => import('../views/bigscreen/index.vue') Vue.use(Router) export const constantRouterMap = [ { path: '/bigscreen/index', component: shouye, meta: { title: '数据大屏' }, name: '数据大屏', hidden: true }, ] export default new Router({ mode: 'hash', // mode: 'history', scrollBehavior: () => ({ y: 0 }), routes: constantRouterMap })