vue v-for 和 v-if 、v-else一塊兒使用形成的bug

現象:致使v-else 執行v-for的length次數,vi

從現象看應該v-for先解析,而後將v-if和v-else包在其中解決方案

 

解決方案:很簡單,tempalte 將v-if v-else 隔離到最外層tempalte

<template vi-if>

< v-for>

</template>

<template v-else>

</template>

如此就不會有很奇怪的問題了

相關文章
相關標籤/搜索