Gridsome markdown to HTML?

By default, Vue outputs the HTML as raw text. In order to output/render real HTML, you will need to use the v-html directive.

<div v-html="restaurant.description"></div>

P.S. Do not skip chapters when learning something(Vue)! :slight_smile: Template syntaxes are explained at the begging of the Vue documentation, in Template Syntax.

2 Likes