Skip to content

Instantly share code, notes, and snippets.

@padewitte
Last active December 27, 2018 13:07
Show Gist options
  • Select an option

  • Save padewitte/cea0ae492a2891a4fb7d52b6549a5ee5 to your computer and use it in GitHub Desktop.

Select an option

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