储能智慧云小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

props.js 343B

12345678910111213141516171819202122
  1. const props = {
  2. animation: {
  3. type: String,
  4. value: 'none',
  5. },
  6. delay: {
  7. type: Number,
  8. value: 0,
  9. },
  10. loading: {
  11. type: Boolean,
  12. value: true,
  13. },
  14. rowCol: {
  15. type: Array,
  16. },
  17. theme: {
  18. type: String,
  19. value: 'text',
  20. },
  21. };
  22. export default props;