收藏
回答

official-account放在组件中只有第一次展示

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug official-account 客户端 6.5.3 2.3.0

official-account做成了一个自定义的组件public-account

<view>

    <official-account></official-account>

</view>


在某个template1中引入了该组件,

<template name="A">

    <public-account></public-account>

</template>


index中引入A,

<template is='A'></template>


多个template用wx-if切换

<template wx=if='{{active==1}}' is='A'></template>

<template wx=if='{{active==2}}' is='B'></template>

<template wx=if='{{active==3}}' is='C'></template>


这种情况下只有第一次切换到A时才展示official-account

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容