props.ts 295 B

1234567891011121314151617181920
  1. export default {
  2. visible: Boolean,
  3. zIndex: {
  4. type: Number,
  5. default: 998,
  6. },
  7. duration: {
  8. type: Number,
  9. default: 300
  10. },
  11. preventScrollThrough: {
  12. type: Boolean,
  13. default: true
  14. },
  15. bgColor: String,
  16. lStyle: [String, Object],
  17. lClass: String,
  18. ariaLabel: String,
  19. ariaRole: String,
  20. }