Skip to content

Instantly share code, notes, and snippets.

@gangsthub
Created April 4, 2018 11:22
Show Gist options
  • Save gangsthub/7ed4d59738f4f948f02279ce0e23d37b to your computer and use it in GitHub Desktop.
Save gangsthub/7ed4d59738f4f948f02279ce0e23d37b to your computer and use it in GitHub Desktop.
vue simplest example
<div id="simplest-example">
<h1>{{ text }}</h1>
</div>
new Vue({
el: '#simplest-example',
data: {
text: 'Hello world! 🔥🔥',
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment