[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 });
}}