mintui里action sheet怎么使用回调函数

2025-04-06 01:01:38
推荐回答(1个)
回答1:

:actions="actions"
v-model="sheetVisible">

data() {
return {
sortType: 1, //默认排序
actions: [
{ name: '默认', type: 1, method: this.clickAction },
{ name: '热度', type: 2, method: this.clickAction },
{ name: '最新', type: 3, method: this.clickAction },
],
sheetVisible: false,
}
},
// 打开action sheet
actionSheet(){
this.sheetVisible = true
},
//选择排序类型
clickAction(e){
this.sortType = e.type
},