Last active
February 28, 2018 13:12
-
-
Save kraizt/760c6bebc3294bb20971dffba9273e6a 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 | |
<div id=”app”> | |
{{ message }} | |
</div> | |
// js letakkan pada <script></script> | |
<script> | |
var app = new Vue({ | |
el: ‘#app’, | |
data: { | |
message: ‘Hallo dari Vue’ | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment