класс?
Vue.component('survey-title', {
props: ['survey'],
template: '<a v-on:click="choice" class="item">{{ survey.title }}</a>',
});
<survey-title v-for="survey in surveys" v-bind:survey="survey" v-on:choice-stat="choiceStat"></survey-title>
Я хотел первому элементу цикла указать класс active
http://ru.vuejs.org/v2/guide/class-and-style.html
Обсуждают сегодня