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