LEARNING BY VUEING

Render HTML
23 / 42

Did you know? {{ warning }} protects you from XSS attacks as it escapes HTML for you automatically.

If you have trusted HTML that you need to render you have to use the v-html directive instead.

There is also a directive we can use instead of mustache syntax. Try adding a div with the v-text directive.

Solution
<div v-text="warning" />