eleventy
eleventy copied to clipboard
WebC docs should highlight $data
I have been confused about how to get global data in WebC components before finding this while reading the code. I don't think it's in the WebC docs yet.
Could you please share how you achieved it?
Could you please share how you achieved it?
There is a property $data that the global properties are put into, so you can use $data.myPropererty etc.
<li webc:for="post of $data.collections.posts">
<a :href="post.url" @text="post.data.title"></a>
</li>
This worked for me and might give someone else a helpful pointer when googling, although I honestly can't remember where I found $data so I'm going to credit this GitHub issue :D