UNPKG

vue-router

Version:

> - This is the repository for Vue Router 4 (for Vue 3) > - For Vue Router 3 (for Vue 2) see [vuejs/vue-router](https://github.com/vuejs/vue-router). > To see what versions are currently supported, please refer to the [Security Policy](./packages/router

26 lines (25 loc) 699 B
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/posva/unplugin-vue-router/main/route.schema.json", "title": "Route custom block", "description": "An SFC custom block to add information to a route", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the route" }, "path": { "type": "string", "description": "The path of the route" }, "meta": { "type": "object", "description": "The meta of the route" }, "props": { "type": "boolean", "description": "Whether the route should be passed its params as props" } } }