vincent067

232 经验值

    <button class='btn btn-xs pull-right' 
                v-bind:class="[work.finished ? 'btn-success':'btn-danger']" 
                v-bind:class="{'important' : work.important}" 
                v-on:click.prevent="changeWork(work,index)" >
                  { work.finished ? '已经完成' : '未完成'}
                </button>

这个元素放在x-template 内时会报错,提示 duplicate attribute: v-bind:class ,尝试删除一个 v-bind 之后就正常了。
但是我不是使用component时,写两个 v-bind:class 并不会报错。 这是啥情况。