Created
May 10, 2018 13:57
-
-
Save cristofersousa/927e516de0c9e269ec4a3fab53a02e13 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <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