vue中监听Form表单值的变化

vue中监听Form表单值的变化_第1张图片

        想要监听From表单中某个值的变化需要用到vue中的 watch

 watch: {
            'inputForm.isHeating'() {
                this.inputForm.otherHeating=''
            }
        },

         isHeating是表单中的某个值,如果他变化就会清空另一个值

vue中监听Form表单值的变化_第2张图片

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