現象:致使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>
如此就不會有很奇怪的問題了