vue3 wx-open-launch-app 安卓下按钮不显示 ?
我们用node做服务端渲染,前台使用的是vite和vue3。在H5页进行拉起App操作,在ios下展示正常,在安卓手机下无法显示按钮。微信都为最新版本的微信。 大致代码如下: <template>
<div id="content">
<wx-open-launch-app id="launch-btn" username="gh_xxxxxxxx" style="background:blue" >
<div v-is="'script'" type="text/wxtag-template">
<button >接收</button>
</div>
</wx-open-launch-app>
</div>
</template>
<style>
.content{
width:500px;
height:500px;
background-color:black;
}
</style>
真机效果 ios下正常展示按钮:[图片] 但是安卓手机下按钮不展示:[图片] 我是还需要做别的操作吗?感觉像是安卓手机并未加载成功标签。还是我需要修改css ? 期待回复