Created
March 5, 2018 04:25
-
-
Save kraizt/8ac934c85efcf4e2020624c338333b61 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 v-model="message"></textarea> | |
<pre> | |
{{ $data }} | |
</pre> | |
</div> | |
</body> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.js"></script> | |
<script> | |
new Vue({ | |
el: '#app', | |
data: { | |
message: 'Perajurit terluka!' | |
} | |
}) | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment