|
微信小程序里面的 block 标签,可以在上面写 if for 等等,而且渲染出来的时候没有这个 block 标签
Vue 有什么办法可以实现吗?答案:vue中使用template代替block 如: <pre class="brush:html;toolbar:false;"><template v-for="(item,index) in menulist">
<el-menu-item v-if="item.menuChilds.length==0" :index="(index+1)" >
<i class="el-icon-menu"></i>
<span slot="title"> pw_item.menuName</span>
</el-menu-item>
</template ></pre>参考 :https://www.v2ex.com/t/435548 |
|
|