13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
selectionIds: []
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
handleSelectionChange(selections) {
|
||
|
this.selectionIds = selections.map((item) => item.id)
|
||
|
}
|
||
|
}
|
||
|
}
|