Created
July 20, 2017 21:07
-
-
Save rdegges/fc29236d5657be46953d0318974b587b to your computer and use it in GitHub Desktop.
A simple shopping list in Vue.js.
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
<html> | |
<body> | |
<div id="app"> | |
<p>Shopping list</p> | |
<ol> | |
<li v-for="item in shoppingList">{{ item }}</li> | |
</ol> | |
</div> | |
<script src="https://unpkg.com/vue"></script> | |
<script> | |
let app = new Vue({ | |
el: "#app", | |
data: { | |
shoppingList: [ | |
"milk", | |
"eggs", | |
"steak", | |
"chicken" | |
] | |
} | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment