$set的用法

1、点击取消按钮,重复赋值,因为使用push,会出现重复数据,使用$set解决。

      let index = 0
      for (var key in this.data) {
        this.$set(this.radioButtonList, index, key)
        index += 1
        // this.radioButtonList.push(key)
      }
      this.radioButtonList.sort()

你可能感兴趣的:($set的用法)