https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html
这是我的代码,父组件会在一定条件下 通过v-show 控制按钮的显示和隐藏,但是部分手机在 缓存,版本等问题条件下 会出现按钮点击失效的问题,有时也是无法显示按钮的问题,有什么通用方法可以解决这个问题吗?
<wx-open-launch-weapp
style="display: block"
username="gh_xxxxxxxxxxx"
path="/xxx/xxx/xxx"
>
<script type="text/wxtag-template">
<style>.btn {
padding: 0 300px;
display: block;
margin: 0;
width: 200%;
min-width: 600px;
color: #fff;
background-color: rgba(0, 0, 0, 0);
border: none;
height: 100%;
min-height: 100px;
font-size: 18px;
font-weight: bold;
}</style>
<button
style="color: #fff;width: 100%;height: 100%;"
class="btn"></button>
</script>
</wx-open-launch-weapp>