Skip to content

Instantly share code, notes, and snippets.

@slmanju
Created August 2, 2018 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slmanju/9d6172caff6b6678e678567a7823db91 to your computer and use it in GitHub Desktop.
Save slmanju/9d6172caff6b6678e678567a7823db91 to your computer and use it in GitHub Desktop.
<template>
<div id="todo-list">
<ul>
<li v-for="todo in todos">{{ todo }}</li>
</ul>
</div>
</template>
<script>
export default {
props: [ 'todos' ]
}
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment