redirect重定向,这样首次打开网站时,不需要点击“首页”按钮就可以自动跳转到首页

const routes = [
  // 比较特殊,放在最前面
  {
    path: "/",
    // redirect重定向
    redirect: "/home"
  },
  {
    path: "/home",
    component: Home,
  },
  {
    path: "/about",
    component: About,
  },
];

const router = new VueRouter({
  // 配置路由和组建的应用关系
  routes,
});
Logo

前往低代码交流专区

更多推荐