Skip to content

Complete guide to

Mastering Pinia

written by its creator

该翻译已同步到了 的版本,其对应的 commit hash 是 35a9c1b

API 参考 / RouteMeta

接口:RouteMeta

路由记录中的 meta 字段的类型接口。

Example

ts
// typings.d.ts 或 router.ts
import 'vue-router';

declare module 'vue-router' {
  interface RouteMeta {
    requiresAuth?: boolean
  }
 }

继承关系

  • Record<string | number | symbol, unknown>

    RouteMeta

Released under the MIT License.