Skip to content

Instantly share code, notes, and snippets.

@allenhwkim
Created September 11, 2017 00:44
Show Gist options
  • Save allenhwkim/7664bf2ebcd66e856faf52e31acc50f3 to your computer and use it in GitHub Desktop.
Save allenhwkim/7664bf2ebcd66e856faf52e31acc50f3 to your computer and use it in GitHub Desktop.
Vue Min Example
<!DOCTYPE html>
<html>
<body>
<script src="//unpkg.com/vue/dist/vue.min.js"></script>
<div id="hello-world" v-on:click="msg++">
Hello {{ msg }}
</div>
<script>
new Vue({
el: "#hello-world",
data: {msg: 0}
});
</script>
<style scoped>
#hello-world {
background-color: grey;
font-size: 24px;
}
</style>
</body>
</html>
@allenhwkim
Copy link
Author

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