This Gist was automatically created by Carbide, a free online programming environment.
Last active
August 26, 2016 11:51
-
-
Save daphen/8ed4ae3c98dcf4826a2849ac58570956 to your computer and use it in GitHub Desktop.
untitled
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
import vue from 'vue' | |
new Vue({ | |
el: 'body', | |
data: { | |
msg: 'Hello World' | |
} | |
}) |
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
var p = document.createElement('p'); | |
p.innerHtml('{{msg}}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment