In the panel, when a field has unsaved changes (you can see this when “revert”/“save” with the orange UI appears), is there a way to read this updated value via vue somehow?
Especially in the case when you re-visit a page with those changes? I’m working on a plugin that generates a preview based on other fields.
I’ve tried with this.$store.getters["content/values"]()['myField']
within the created()
or mounted()
vue lifecycle hooks but it’s always returned as undefined
.
FWIW, that same getter works for sniffing changes to that same field. But I’ld need it before.