vue v-for里面再套v-if和v-esle
<ul>
<template v-if="true">
<li v-for="st in sth">{{st}}</li>
</template>
<li v-else>sdfsdfs</li>
</ul>
<ul>
<template v-if="true">
<li v-for="st in sth">{{st}}</li>
</template>
<li v-else>sdfsdfs</li>
</ul>