合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
449 B

1 week ago
  1. export const ariaProps = {
  2. ariaHidden: Boolean,
  3. ariaRole: String,
  4. ariaLabel: String,
  5. ariaLabelledby: String,
  6. ariaDescribedby: String,
  7. ariaBusy: Boolean,
  8. lStyle: String
  9. }
  10. export default {
  11. ...ariaProps,
  12. // lClass: String,
  13. name: String,
  14. color: String,
  15. size: [String, Number],
  16. prefix: String,
  17. // type: String,
  18. inherit: {
  19. type: Boolean,
  20. default: true
  21. },
  22. web: {
  23. type: Boolean,
  24. default: true
  25. },
  26. lStyle:[String, Object, Array],
  27. }