Skip to content

Instantly share code, notes, and snippets.

@padewitte
Last active December 27, 2018 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save padewitte/cea0ae492a2891a4fb7d52b6549a5ee5 to your computer and use it in GitHub Desktop.
Save padewitte/cea0ae492a2891a4fb7d52b6549a5ee5 to your computer and use it in GitHub Desktop.
VueJS running in pure module mode
<div id="app">
Hello : {{ message }}
</div>
import Vue from 'https://unpkg.com/vue/dist/vue.esm.browser.js'
new Vue({
el: '#app',
data: {
message: 'world!'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment