Created
September 11, 2017 00:44
-
-
Save allenhwkim/7664bf2ebcd66e856faf52e31acc50f3 to your computer and use it in GitHub Desktop.
Vue Min Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Plunker: http://plnkr.co/edit/U9tKDc?p=preview