Rumah > Artikel > hujung hadapan web > 在Vuejs里使用index对第一项添加class
这次给大家带来在Vuejs里使用index对第一项添加class,在Vuejs里使用index对第一项添加class的注意事项有哪些,下面就是实战案例,一起来看一下。
(1)在v-for中,利用index来对第一项添加class
在CODE上查看代码片派生到我的代码片
<a class="list-group-item" :class="{'active':!index}" v-for="(i,index) in announcement">
index来源于v-for,i表示遍历的数组的元素,index表示索引。
由于index从0开始,因此如果要指定第一项有active这个类,那么就用v-bind:class="{'active':!index}"
第一项原本是false(0),第二项和之后是true(>0),通过逻辑非操作符,让其值反转。
因此,第一项有active这个类,而后面的没有。
如果除了第一项之外有某个类,也可以通过不加逻辑非操作符来达到。
类似的,可以用index==2这样的表达式来让第三项获得这个类。
注意,我的版本是Vuejs2.0,因此貌似不能用$index来替换。
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
axios发送post请求springMVC无法接受参数如何处理
Atas ialah kandungan terperinci 在Vuejs里使用index对第一项添加class. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!