[Vue]setup()中 watch的使用

使用vue3中的watch會發生沒有持續監聽的狀況
如果使用的是ref的話
會需要使用以下的方式

import {ref, watch} from “vue";

export default {
setup(){
let showList = ref([])
watch(showList, (newValue, oldValue) => {
console.log(newValue, oldValue)
}, { deep: true });
}}

 

 

關於站主

Shiro

因為興趣無限擴張,一直很猶豫要不要寫一個很雜的Blog,後來還是這麼做了。

聯絡:shiro050102✦gmail.com  ✦請自行更換成@

Vue