props.js 419 B

123456789101112131415161718192021222324
  1. const props = {
  2. activeColor: {
  3. type: String,
  4. value: '',
  5. },
  6. closeOnClickOverlay: {
  7. type: Boolean,
  8. value: true,
  9. },
  10. duration: {
  11. type: String,
  12. optionalTypes: [Number],
  13. value: 200,
  14. },
  15. showOverlay: {
  16. type: Boolean,
  17. value: true,
  18. },
  19. zIndex: {
  20. type: Number,
  21. value: 11600,
  22. },
  23. };
  24. export default props;