|
@ -264,10 +264,10 @@ const onResize = (size) => { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
const selectedComputed = computed(() => { |
|
|
const selectedComputed = computed(() => { |
|
|
return props.grid.getSelectedRows(); |
|
|
return Object.keys(props.grid).length > 0 ? props.grid.getSelectedRows() : []; |
|
|
}); |
|
|
}); |
|
|
const tickedComputed = computed(() => { |
|
|
const tickedComputed = computed(() => { |
|
|
return props.grid.getTickedRows(); |
|
|
return Object.keys(props.grid).length > 0 ? props.grid.getTickedRows() : []; |
|
|
}); |
|
|
}); |
|
|
const buttonClick = async (button) => { |
|
|
const buttonClick = async (button) => { |
|
|
let beforeResult = true; |
|
|
let beforeResult = true; |
|
|