VUE实现接口监听值调用接口 2022-2-23 15:01 | 758 | 0 | 技术 65 字 | 2 分钟 在计算属性中找到全局定义的值(也是要计算的) computed: { // 计算添加终端 billings () { let sms_num = this.sms_num return { sms_num, } }, }, 使用watch监听computed中的billings watch: { // 监听添加短信数量 billings: { ha… vue