vue2 this.$set 不起作用问题。

 

                {{ item.flag?'收起' :'回复' }} =={{ item.replyObj.length }} =={{ item.flag }}

                {{ item.reply }}

             

changeReplayStatus(item){

      item.flag = !item.flag;

        // 因为第一次key已经存在,来回切换的话需要先删除在重新设置。

      this.$delete(this.replyPostList1,'flag')

      this.$set(this.replyPostList1,'flag',item.flag)

    },

你可能感兴趣的:(前端,javascript,vue.js)