attributes.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "i18n/path" : {
  3. "description": "[required]\nKeypath of the locale message",
  4. "type": "string"
  5. },
  6. "i18n/locale" : {
  7. "description": "[optional]\nLocale to be used in this translation",
  8. "type": "string"
  9. },
  10. "i18n/tag" : {
  11. "description": "[optional]\nWhich tag to render, default is \"span\"",
  12. "type": "string"
  13. },
  14. "i18n/places": {
  15. "description": "[optional after v8.14]\nWill be removed in the next major version, use the slot syntax instead\n\nhttp://kazupon.github.io/vue-i18n/guide/interpolation.html#slots-syntax-usage",
  16. "type": "array|object"
  17. },
  18. "i18n-n/value" : {
  19. "description": "[required]\nNumber to be used in formatting",
  20. "type": "number"
  21. },
  22. "i18n-n/format": {
  23. "description": "[optional]\nNumber format name or object with explicit format options",
  24. "type": "string|object"
  25. },
  26. "i18n-n/locale" : {
  27. "description": "[optional]\nLocale to be used in this translation",
  28. "type": "string"
  29. },
  30. "i18n-n/tag" : {
  31. "description": "[optional]\nWhich tag to render, default is `span`",
  32. "type": "string"
  33. }
  34. }