Skip to content

Instantly share code, notes, and snippets.

@daphen
Last active August 26, 2016 11:51
Show Gist options
  • Save daphen/8ed4ae3c98dcf4826a2849ac58570956 to your computer and use it in GitHub Desktop.
Save daphen/8ed4ae3c98dcf4826a2849ac58570956 to your computer and use it in GitHub Desktop.
untitled
import vue from 'vue'
new Vue({
el: 'body',
data: {
msg: 'Hello World'
}
})
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