储能智慧云小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

props.js 447B

1234567891011121314151617181920212223242526
  1. const props = {
  2. arrowIcon: {
  3. type: null,
  4. value: 'caret-down-small',
  5. },
  6. closeOnClickOverlay: {
  7. type: Boolean,
  8. value: true,
  9. },
  10. duration: {
  11. type: null,
  12. value: 200,
  13. },
  14. externalClasses: {
  15. type: Array,
  16. },
  17. showOverlay: {
  18. type: Boolean,
  19. value: true,
  20. },
  21. zIndex: {
  22. type: Number,
  23. value: 11600,
  24. },
  25. };
  26. export default props;