import Vue from 'vue' import Router from 'vue-router' import index from '@/components/index' Vue.use(Router) const routes = [ { path: '/', redirect: "index", }, { path: '/index', name: 'index', component: index }, ]; const router = new Router({ // mode: "history", // base: '/TEST6', routes, }); router.beforeEach((to, from, next) => { next(); }) export default router;