版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

26 righe
699 B

  1. {
  2. "$schema": "https://json-schema.org/draft/2020-12/schema",
  3. "$id": "https://raw.githubusercontent.com/posva/unplugin-vue-router/main/route.schema.json",
  4. "title": "Route custom block",
  5. "description": "An SFC custom block to add information to a route",
  6. "type": "object",
  7. "properties": {
  8. "name": {
  9. "type": "string",
  10. "description": "The name of the route"
  11. },
  12. "path": {
  13. "type": "string",
  14. "description": "The path of the route"
  15. },
  16. "meta": {
  17. "type": "object",
  18. "description": "The meta of the route"
  19. },
  20. "props": {
  21. "type": "boolean",
  22. "description": "Whether the route should be passed its params as props"
  23. }
  24. }
  25. }