Vue3: How to watch/compute/use $page.props with composition api #856
-
I am trying to figure out how to watch or compute properties of With the options api it was easy:
With the options api it looks like this:
This work when I am using the form helper and posting something and then return to another page. With "it doesn't work" I mean, that in the page the props are updated fine. But in a component (an alert component) the computed properties a still null. Does anyone know what I am missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
You can try watchEffect, Like this.