实际上点击这个按钮,会触发自带的 bind:close 方法,
所以解决方法如下:
<van-popup show="{{ show }}" closeable bind:close="onClose">
onClose() {
this.setData({ show: false })
},
实际上点击这个按钮,会触发自带的 bind:close 方法,
所以解决方法如下:
<van-popup show="{{ show }}" closeable bind:close="onClose">
onClose() {
this.setData({ show: false })
},