储能智慧云小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

props.js 398B

1234567891011121314151617181920212223
  1. const props = {
  2. buttonProps: {
  3. type: Object,
  4. },
  5. draggable: {
  6. type: Boolean,
  7. optionalTypes: [String],
  8. value: false,
  9. },
  10. icon: {
  11. type: String,
  12. value: '',
  13. },
  14. style: {
  15. type: String,
  16. value: 'right: 16px; bottom: 32px;',
  17. },
  18. text: {
  19. type: String,
  20. value: '',
  21. },
  22. };
  23. export default props;