dounai1306 / vue

vue的一些相关记录
0 stars 0 forks source link

vue2对象的watch #19

Open dounai1306 opened 6 years ago

dounai1306 commented 6 years ago
computed: {
      modalEmployeeCurrentPage () {
        return this.modalEmployee.currentPage
      }
    },
    watch: {
      modalEmployeeCurrentPage (newValue, oldValue) {
        this.modalEmployee.query.pageNo = newValue
        this.getAllUser()
      }
    }