Created
July 7, 2019 04:28
-
-
Save dskkato/7497e245c931cba02a0be761e2427f00 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My first Vue app</title> | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
</head> | |
<body> | |
<div id="app"> | |
<ol> | |
<li v-for="todo in todos"> | |
{{ todo.text }} | |
</li> | |
</ol> | |
</div> | |
<script> | |
var app = new Vue({ | |
el: '#app', | |
data: { | |
todos: [ | |
{ text: 'Learn JavaScript' }, | |
{ text: 'Learn Vue' }, | |
{ text: 'Build something awesome' } | |
] | |
} | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment