<template>
<div>
<template v-for="i in 9">
<div v-if="i != 2 && i != 3 && i != 7 && i != 8 && i != 9" :key="i">
<v-chip>
{{ i }}
</v-chip>
</div>
<v-chip :key="i" v-else>
{{ i }}
</v-chip>
</template>
</div>
</template>
This snippet generates this output
How to render exactly this output but horizontally to get this
if you consider using an array from
data
option, this might work