vue v-show不会在数据属性更改时触发

时间:2018-12-19 11:48:22

标签: methods vuejs2 conditional hide show

我有以下vue模板

<button :disabled=isDisabled v-show="!isLast " type="button" id="next" class="survey-card__actions-right" v-on:click="next()">Next {{isLast}}</button>
<button v-show="isLast " class="survey-card__actions-right" type="button" v-on:click="sendSurvey()">Send</button>

我有我的

      data() {
            return {
                isLast: false
           }
        }

还有一个检查以下内容的下一个方法

      if(next[0].length == (cI + 2)) {
          alert() //will alert
          this.isLast = true
          console.log(this.isLast) //true
      }

但是在模板中永远不会发生更改

0 个答案:

没有答案