12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- export default {
- /* 将要展示的按钮组 */
- buttonGroup:{
- type: Array,
- default:[]
- },
- /* 元素对象 */
- item:{
- type: Object,
- default:{}
- },
- disabled:{
- type:Boolean,
- default:false
- },
- /* 标示 */
- index:{
- type: Number,
- default: 0
- },
- /* 提示 */
- toast:{
- type: Boolean,
- default: true
- },
- /* 跳转页面区分标示 */
- type:{
- type: String,
- default:''
- },
- size:{
- type:String,
- default:''
- }
- };
|