official-account放在组件中只有第一次展示
发布于 5 年前 作者 xiuyingshi 5640 次浏览 来自 问答

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 回复

用hidden进行切换

回到顶部