Created
September 27, 2017 23:08
-
-
Save anonymous/53971d7c51e9be322937626519b1fb4a to your computer and use it in GitHub Desktop.
Programadores de Venezuela - Vue.js render HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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