props.js 321 B

12345678910111213141516171819
  1. const props = {
  2. backgroundColor: {
  3. type: String,
  4. value: '',
  5. },
  6. duration: {
  7. type: Number,
  8. value: 300,
  9. },
  10. preventScrollThrough: {
  11. type: Boolean,
  12. value: true,
  13. },
  14. zIndex: {
  15. type: Number,
  16. value: 11000,
  17. },
  18. };
  19. export default props;