saberland/saber



Do you want to work on this issue?
You can request for a bounty in order to promote it!
Can I inject posts into a Vue component (not layout)? #595
themindstorm posted onGitHub
I have a table of contents component which shows a list of posts. I tried this:
// components/toc.vue
<script>
export const data = {
injectAllPosts: true
}
export default {
props: ["page", ...],
...
When I check the Vue devtools, page
does not have any property posts
. Is there a way to do this?