Skip to content

Instantly share code, notes, and snippets.

@woxtu
Created September 26, 2019 04:47
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 woxtu/af71481beeace4995f95c6ef0f2166ef to your computer and use it in GitHub Desktop.
Save woxtu/af71481beeace4995f95c6ef0f2166ef to your computer and use it in GitHub Desktop.
Vue starter with 8 lines html
<div id=root />
<script type="module">
import Vue from 'https://dev.jspm.io/vue@2.6.10'
new Vue({
el: '#root',
render: (h) => h('h1', null, 'hello'),
})
</script>
@woxtu
Copy link
Author

woxtu commented Sep 26, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment