Created
March 5, 2018 04:19
-
-
Save kraizt/21dd25c6eb6a822edf44c215f7951119 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<title>Hello Vue</title> | |
</head> | |
<body> | |
<div id="app"> | |
<textarea></textearea> | |
</div> | |
</body> | |
// js | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.js"></script> | |
<script> | |
new Vue({ | |
el: '#app' | |
data: { | |
message: 'Perajurit Teluka butuh bantuan!' | |
} | |
}) | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment