Skip to content

Instantly share code, notes, and snippets.

@nhumphrey2
Created December 18, 2018 06:11
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 nhumphrey2/e3d7ae4a8c4636940e548039aa4e99fb to your computer and use it in GitHub Desktop.
Save nhumphrey2/e3d7ae4a8c4636940e548039aa4e99fb to your computer and use it in GitHub Desktop.
List Items Vue Simple App
<template>
<li>
{{ todo.text }}
<button @click="$emit('remove', todo.id)">
X
</button>
</li>
</template>
<script>
export default {
props: {
todo: {
type: Object,
required: true
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment