Hi…
Is it possible to get some data defined in the blueprint into my panel-Plugin?
What sort of panel plugin?
the plugin is to show the created content in the panel-blueprint-layout (vue-plugin).
can I transfer the data with vue-props or something?
I found a way…
data: function () {
return {
displayname: this.$store.getters["content/values"]()["displayname"]
};
},
but is this the best practice?