props.js 484 B

12345678910111213141516171819202122232425262728293031323334
  1. export default {
  2. item:{
  3. type:Object,
  4. default:function () {
  5. return {}
  6. }
  7. },
  8. /*
  9. * receive 领取
  10. * radio 选择
  11. * available 不可用
  12. * notUse 未使用
  13. * use 已使用
  14. * expired 已过期
  15. *
  16. * */
  17. type:{
  18. type:String,
  19. default:'receive'
  20. },
  21. icon:{
  22. type:String,
  23. default:''
  24. },
  25. value:{
  26. type:Boolean,
  27. default:false
  28. }
  29. }