mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
42 lines
854 B
Vue
42 lines
854 B
Vue
<template>
|
|
<div>
|
|
<h2>Todos</h2>
|
|
<ul>
|
|
<li v-for="(todo, index) in todos" :key="index">
|
|
<input type="checkbox" :checked="todo.done" @change="toggle(todo)">
|
|
<span :class="{ done: todo.done }">{{ todo.text }}</span>
|
|
</li>
|
|
<li><input placeholder="What needs to be done?" @keyup.enter="addTodo"></li>
|
|
</ul>
|
|
<nuxt-link to="/">Home</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapMutations, mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
computed: mapGetters({
|
|
todos: 'todos/todos'
|
|
}),
|
|
methods: {
|
|
addTodo(e) {
|
|
var text = e.target.value
|
|
if (text.trim()) {
|
|
this.$store.commit('todos/add', { text })
|
|
}
|
|
e.target.value = ''
|
|
},
|
|
...mapMutations({
|
|
toggle: 'todos/toggle'
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.done {
|
|
text-decoration: line-through;
|
|
}
|
|
</style>
|