避免为Vue.js循环的最后一个元素添加class=""的方法
P粉868586032
2023-08-29 14:28:06
<p>在vuejs模板中,当循环索引的最后一次迭代时,删除tailwind类。</p>
<p><strong>在模板中</strong></p>
<pre class="brush:php;toolbar:false;">v-for="(service, index) in getAllServices.home_page_services" :key="index"</pre>
<p><strong>在脚本中</strong></p>
<pre class="brush:php;toolbar:false;"><script>
export default {
mounted() {
this.$store.dispatch("getHomePageContent")
},
computed: {
getAllServices(){
return this.$store.getters.getContentFormGetters
}
}
}</pre></p>
我可以解决
雷雷