vue 路由歪招

Posted jiaojiawang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 路由歪招相关的知识,希望对你有一定的参考价值。

const routes = [
  {
    path: "/",
    component: BasicLayout,
    children: [
      {
        path: "",
        name: "analysis",
        component: Analysis
      },
      {
        path: "userform",
        name: "userform",
        component: h => h("<router-view />")  !!!!!特殊情况下用
      }
    ]
  },

 

以上是关于vue 路由歪招的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置

vue路由对象($route)参数简介

vue知识点-$route和$router

vue 路由对象(常用的)