【问题】watch 数组变化

watch ref的值 / 地址

问题现象

  • watch 的 ref 值不加 .value 只是地址,加 .value 可以watch到值的变化。

解决方案

1
2
3
4
5
6
const timeRange = ref([])
watch(() => timeRange.value, () => {
[searchParams.createStartTime, searchParams.createEndTime] = timeRange.value
resetPageSetting()
debounceChange()
})
文章目录
  1. 1. watch ref的值 / 地址
    1. 1.1. 问题现象
    2. 1.2. 解决方案