<sctipt>
import { watch,defineProps } from 'vue';
const props = defineProps({
bool: {
type: Boolean,
required: true
}
})
watch(
() => props.bool,
(newValue,oldValue) => {
console.log(newValue,oldValue)
}
)
</script>
Vue3 监听 Prop 变化
Published: at 09:28 AMSuggest Changes