now you need to do a collection function that can select 5 out of 21 li.
<ul>
<li v-for="(item,index) in mylotteryList" :key="index" :class="setClass(index)" @click="check_show(index)">
{{item.title}}
</li>
</ul>
mylotteryList loop has 21 li
methods:{
setClass(index){
},
check_show(index) {
},
}