Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/9b692be724b3637aa88d8c11a5ce0f41 to your computer and use it in GitHub Desktop.
Save dvallin/9b692be724b3637aa88d8c11a5ce0f41 to your computer and use it in GitHub Desktop.
<template>
<div class="todo-list-item">
<label>{{todo.title}}</label>
</div>
</template>
<script lang="ts">
export default {
name: 'TodoListItem',
props: ['task']
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment