Can vue watch monitor the change of the whole props value?

In

react , there is a shouldComponentUpdate method that can listen for the whole props and state changes, and get the old and new values. It seems that the old and new values can only be obtained in the watch, but it seems that the whole vm.$props or vm.$data cannot be monitored.

Mar.03,2021

updated () {
    // do something
}

watch: {
$props: {
handler:.,
deep:true
}
}

Menu