We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
集成vant-weapp的van-popup的绑定事件失效
van-popup
wepy2.0
'van-popup': 'module:vant-weapp/dist/popup/index',
<template> <van-popup show="{{ show }}" bind:close="onClose">内容</van-popup> </template> wepy.page ({ data: { show: true, }, methods: { onClose() { wx.showToast({ title: '点击了关闭', }); }, }, }); </script>
会有如下提示:
集成三方的小程序组件能直接使用。
The text was updated successfully, but these errors were encountered:
fd37c01
绑定事件还是有问题,有问题的完整demo已提到 #1914
Sorry, something went wrong.
我也遇到类似问题wepy2,vant组件库中的popup组件遮罩层及原事件失效,导致必须绑定close关闭事件且需自行去控制show属性的状态
Gcaufy
No branches or pull requests
Description
集成vant-weapp的
van-popup
的绑定事件失效Environment
wepy2.0
Reproduce
Observed Results
会有如下提示:
Expected Results
集成三方的小程序组件能直接使用。
The text was updated successfully, but these errors were encountered: