2.0写法
```data(){return {a: 0,b:false}},watch: {a(){this.b = true}}
```}
cosnt a = ref(0);const b = ref(false);watch(a, () => {b.value = true;});