Can I use useContent() and ContentRendererMarkdown?
Hi, I'm using nuxt-content to generate articles, but in some articles, I wanted to fetch a value from another article. Everything works correctly except for generating the ToC –
GetCustom.vue:
MainArticle.md:
/external-markdown-files/article1.md:
ToC from
useContent() ignores everything that is fetched from useAsyncData. How can I change this/delay the ToC generation until useAsyncData has completed (because I think that's where the problem lies)?GetCustom.vue:
MainArticle.md:
/external-markdown-files/article1.md:
ToC from
const { toc } = useContent() only includes headings from MainArticle.md (## Some heading)
