1.0.21
https://jsfiddle.net/hisland/f9gdg0d1/
i want a condition v-for
template(v-for="a in 6" v-if="a%2")
p {{a}}
i got 0-5, i don't want this
p 0
p 1
p 2
p 3
p 4
p 5
template(v-for="a in 6")
template(v-if="a%2")
p {{a}}
this is ok
p 1
p 3
p 5
can i use template(v-for="a in 6" v-if="a%2")?
Closed with https://github.com/vuejs/vue/issues/2663
Most helpful comment
Closed with https://github.com/vuejs/vue/issues/2663