wantongjizhi
Version:
Custom components for WANTONG JIZHI
22 lines (21 loc) • 366 B
JavaScript
export default {
name: 'WtGridBatchToolbar',
inject: ['WtGrid'],
props: {
items: {
type: Array,
default: () => []
}
},
watch: {
items() {
this.WtGrid.batchToolbarProps.items = this.items
}
},
created() {
this.WtGrid.batchToolbarProps.items = this.items
},
render() {
return null
}
}