v-if
v-else-if
为 v-if 或者 v-else-if 添加“else 块”。
<div v-if="Math.random() > 0.5"> Now you see me </div> <div v-else> Now you don't </div>