Skip to content

Instantly share code, notes, and snippets.

@catalinpit
Created May 20, 2021 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save catalinpit/b3c086c2d98c96ef28b1aea8dc042603 to your computer and use it in GitHub Desktop.
Save catalinpit/b3c086c2d98c96ef28b1aea8dc042603 to your computer and use it in GitHub Desktop.
<template>
<h1>{{ title }}</h1>
<h2>Add a new task</h2>
<div>
<input type="text"
v-model="newTask"
placeholder="Add a new task"
>
</div>
<div v-if="newTask.length > 0">
<h3>New task preview</h3>
<p>{{ newTask }}</p>
</div>
<ul>
<li v-for="task in tasks" :key="task.id">
{{ task.id }}. {{ task.name }}
<div v-if="task.finished">
<button>Delete task</button>
</div>
</li>
</ul>
</template>
<script>
export default {
data() {
return {
title: 'My To Do App',
newTask: '',
tasks: [
{ id: 1, name: 'Learn Vue JS', finished: false },
{ id: 2, name: 'Build a Vue application', finished: false },
{ id: 3, name: 'Write an article about Vue JS', finished: false }
]
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment