Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created July 20, 2017 21:07
Show Gist options
  • Save rdegges/fc29236d5657be46953d0318974b587b to your computer and use it in GitHub Desktop.
Save rdegges/fc29236d5657be46953d0318974b587b to your computer and use it in GitHub Desktop.
A simple shopping list in Vue.js.
<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