vue中computed计算属性的传值问题

it2024-11-16  3

使用闭包传值

computed:{ checkHasError(){ // 使用闭包方式传值 return function(index,lang) { if(this.wordList[index][lang] == '' && this.wordList[index].hasOwnProperty('hasError')){ return { 'has-error':true, } } } }, },

使用

<div class="form-group" v-bind:class="checkHasError(index,'form_word')"> <textarea v-bind:class="'form-control'" v-model="item.form_word" :placeholder="'请输入'+chineseLanguage(item.form_lang)"></textarea> </div>
最新回复(0)