关闭弹窗的computed写法

48 阅读1分钟

其实没必要反复的去设置showDialog的写法,computed的写法可以帮我们省很多事,写法如下

    showDialog: {
      get: function() {
        return this.dialogVisible
      },
      set: function() {
        this.$emit('cancel')
      }
    }