Vue3路由重定向基本使用

2,949 阅读1分钟
import { createRouter, createWebHashHistory } from "vue-router"  
const routes = [{  
    path: '/',  
    redirect: '/login',  
    },  
    {
      path: '/login',  
      name: 'login',  
      component: () =>  
      import ('views/login/login.vue')  
    }
]
export const router = createRouter({
        history: createWebHashHistory(),
        routes: routes,
    })