其他分享
首页 > 其他分享> > vue3 watch监听多个数据

vue3 watch监听多个数据

作者:互联网

第一个参数返回ref数组即可

<script setup lang="ts">
  const cnt1 = $ref(0)
  const cnt2 = $ref(0)

  watch(() => [cnt1, cnt2], () => console.log(cnt1, cnt2))
</script>

<template>
  <div>
    <button btn @click="cnt1++">cnt1+</button>
    {{cnt1}}
    <button btn @click="cnt2++">cnt2+</button>
    {{cnt2}}
  </div>
</template>

标签:const,watch,cnt2,cnt1,vue3,console,ref,监听
来源: https://www.cnblogs.com/poifa/p/16362889.html