综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

props.js 502B

12345678910111213141516171819202122232425262728293031
  1. export default {
  2. props: {
  3. // 是否展示组件
  4. show: {
  5. type: Boolean,
  6. default: false
  7. },
  8. // 使用的动画模式
  9. mode: {
  10. type: [Array, String, null],
  11. default() {
  12. return 'fade'
  13. }
  14. },
  15. // 动画的执行时间,单位ms
  16. duration: {
  17. type: [String, Number],
  18. default: 300
  19. },
  20. // 使用的动画过渡函数
  21. timingFunction: {
  22. type: String,
  23. default: 'ease-out'
  24. },
  25. customClass: {
  26. type: String,
  27. default: ''
  28. },
  29. ...uni.$uv?.props?.transition
  30. }
  31. }