首先watch是一个侦听属性他有两个属性分别为变值前和变值后
侦听属性的命名,必须是data,computed,props中的变量名
import { computed, watch, ref } from "vue"; // 在vue中导入三个属性
export default {
setup() {
const count = ref(0); //声明
watch( count , ()=>{
// 逻辑代码
})
return { count, computed }
},
};