合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
370 B

3 months ago
  1. // import {PropType} from 'vue'
  2. export default {
  3. color: {
  4. type: String,
  5. // default: '#c9c9c9'
  6. },
  7. type: {
  8. type: String, //as PropType<'circular'|'spinner'>,
  9. default: 'circular'
  10. },
  11. size: {
  12. type: String,
  13. // #ifdef APP-NVUE
  14. default: '40rpx'
  15. // #endif
  16. },
  17. text: String,
  18. textColor: String,
  19. textSize: String,
  20. vertical: Boolean,
  21. inheritColor: Boolean
  22. }