Skip to content
Have a clear structure

路由元信息 meta

meta 中可以为路由添加自定义信息:

js
const routes = [
  {
    name: 'about',
    path: '/about',
    component: About,
    meta: { title: 'hello', isAuth: true }
  }
]