props.js 444 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. export default {
  2. /* 将要展示的按钮组 */
  3. buttonGroup:{
  4. type: Array,
  5. default:[]
  6. },
  7. /* 元素对象 */
  8. item:{
  9. type: Object,
  10. default:{}
  11. },
  12. disabled:{
  13. type:Boolean,
  14. default:false
  15. },
  16. /* 标示 */
  17. index:{
  18. type: Number,
  19. default: 0
  20. },
  21. /* 提示 */
  22. toast:{
  23. type: Boolean,
  24. default: true
  25. },
  26. /* 跳转页面区分标示 */
  27. type:{
  28. type: String,
  29. default:''
  30. },
  31. size:{
  32. type:String,
  33. default:''
  34. }
  35. };