Skip to content

Instantly share code, notes, and snippets.

Created September 27, 2017 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/53971d7c51e9be322937626519b1fb4a to your computer and use it in GitHub Desktop.
Save anonymous/53971d7c51e9be322937626519b1fb4a to your computer and use it in GitHub Desktop.
Programadores de Venezuela - Vue.js render HTML
<template>
<div v-html="ddbbHTMLString">
</div>
</template>
<script>
export default {
data: () => ({
ddbbHTMLString: `
<span>Hola
<strong>Mundo!</strong>
</span>
`
})
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment