Created
August 2, 2018 04:34
-
-
Save slmanju/9d6172caff6b6678e678567a7823db91 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
<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