I need the contents from $site
in my Vue panel component.
I tried to hand over with a computed value like this:
Kirby::plugin('my/plugin', [
'blocks' => [
'contact' => [
'computed' => [
'site' => "123yeah" // testing ...
]
]
]
...
But site
in the Vue component is empty. What’s wrong, and isn’t there a documentation on that topic? I was looking around here Panel internals | Kirby CMS but did not find anything out there.
Thanks a lot