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