Skip to content

Instantly share code, notes, and snippets.

@cristofersousa
Created May 10, 2018 13:57
Show Gist options
  • Select an option

  • Save cristofersousa/927e516de0c9e269ec4a3fab53a02e13 to your computer and use it in GitHub Desktop.

Select an option

Save cristofersousa/927e516de0c9e269ec4a3fab53a02e13 to your computer and use it in GitHub Desktop.
<div id="app">
{{html}} <! - aqui renderiza o texto como string →
<div v-html="html"></div> <! - aqui renderiza o elemento esperado →
</div>
<script>
let app = New Vue({
el="#app",
data: {
html: "<input type='text' />",
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment