Hey – is it possible to have access to the site object within a custom vue component to create the view for a custom block used in a blocks field? From the docs the only object I found is content
, which holds all data that was stored to this custom block component definition.
In my case i made a custom block element, which refers to other pages (via select field). Those pages are practically just modules, which can be reused accross the site. Currently I only can output the id of the page, but I really would like to give it a more rich content style, by access the page (module) data with its title, cover image and some other content.
panel.plugin('blocks/modulblock', {
blocks: {
modulblock: `
// just display something like "modules/modulname"
<div>{{ content.modul }}</div>
// kirby query api not available here – or did i miss something?
<div>{{ site.pages.find(content.modul).title }}</div>
`
}
})
In the docs I didn’t find any informations, which objects are available within a Vue-Component.
Thanks for your help
Matthias