Why is the Actionsheet pull-up menu not available for the select event?
html
< van-actionsheet VMI model = "show": actions= "actions" @ select= "onSelect" / >
data
show:false,
actions: [
{
name: ""
},
{
name: "1",
subname: ""
},
{
loading: true
},
{
name: "",
disabled: true
}
]
methods
onSelect (item) {
this.show = false;
console.log(item)
},
sex(){
this.show=true
},