我们用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 ?
期待回复
v-is在Vue3.1被弃用了
试试用<component :is="'script'" type="text/wxtag-template">xxx</component>
应该是安卓下;微信开放标签并没加载成功