NuxtN
Nuxt2y ago
abd

nuxt/content doesnt allow mixing vue components with markdown?

I am starting to build out a blog using nuxt/content and running into an issue where if I add an in-line vue component then other markdown in the file will not render

no vue component the markdown renders
---
title: "Home"
description: "Home page of the blog"
---


# this is a header


this is content


in-line vue component, only the component renders and not the rest of the markdown content
---
title: "Home"
description: "Home page of the blog"
---

::BlogHeader

# this is a header


this is content
image.png
image.png
Was this page helpful?