让v-if
和v-for
一起使用
外层包裹一个template
节点,示例
<template v-if="">
<div v-for="">
</div>
</template>
<template v-for="(item, index) in end">
<button v-if="start <= item" :key="index">
{{ item }}
</button>
</template>