Mustafa KÜÇÜK

Results 1 comments of Mustafa KÜÇÜK

Hi, Maybe you want use this way. ```js import { ref, watch } from "vue"; const dateValue = ref([]); watch( dateValue, (val) => { console.log(val); }, { deep: true }...