Vue snooping data

will the code in the vue listen be executed after the page is refreshed if the value of the refresh page is the same?

Mar.20,2021


 return{}
 var obj = {a:1}
watch: {
    'obj.a' (val) {
      }
}
Menu