@huntianning/components
Version:
Custom components for HTN
26 lines (25 loc) • 479 B
JavaScript
export default {
name: 'UiGridBatchToolbar',
inject: ['UiGrid'],
props: {
items: {
type: Array,
default: () => []
}
},
watch: {
items() {
this.UiGrid.batchToolbarProps = Object.assign({}, this.UiGrid.batchToolbarProps, {
items: this.items
})
}
},
created() {
this.UiGrid.batchToolbarProps = Object.assign({}, this.UiGrid.batchToolbarProps, {
items: this.items
})
},
render() {
return null
}
}