123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <style src="todomvc-app-css/index.css"></style>
- <template>
- <section class="todoapp">
- <!-- header -->
- <header class="header">
- <h1>todos</h1>
- <input class="new-todo"
- autofocus
- autocomplete="off"
- placeholder="What needs to be done?"
- @keyup.enter="tryAddTodo">
- </header>
- <!-- main section -->
- <section class="main" v-show="todos.length">
- <input class="toggle-all"
- type="checkbox"
- :checked="allChecked"
- @change="toggleAll(!allChecked)">
- <ul class="todo-list">
- <todo v-for="todo in filteredTodos" :todo="todo"></todo>
- </ul>
- </section>
- <!-- footer -->
- <footer class="footer" v-show="todos.length">
- <span class="todo-count">
- <strong>{{ remaining }}</strong>
- {{ remaining | pluralize('item') }} left
- </span>
- <ul class="filters">
- <li v-for="(val, key) in filters">
- <a :href="'#/' + key"
- :class="{ selected: visibility === key }"
- @click="visibility = key">
- {{ key | capitalize }}
- </a>
- </li>
- </ul>
- <button class="clear-completed"
- v-show="todos.length > remaining"
- @click="clearCompleted">
- Clear completed
- </button>
- </footer>
- </section>
- </template>
- <script>
- import Todo from './Todo.vue'
- import {
- addTodo,
- toggleAll,
- clearCompleted
- } from '../vuex/actions'
- const filters = {
- all: todos => todos,
- active: todos => todos.filter(todo => !todo.done),
- completed: todos => todos.filter(todo => todo.done)
- }
- export default {
- components: { Todo },
- vuex: {
- getters: {
- todos: state => state.todos
- },
- actions: {
- addTodo,
- toggleAll,
- clearCompleted
- }
- },
- data () {
- return {
- visibility: 'all',
- filters: filters
- }
- },
- computed: {
- allChecked () {
- return this.todos.every(todo => todo.done)
- },
- filteredTodos () {
- return filters[this.visibility](this.todos)
- },
- remaining () {
- return this.todos.filter(todo => !todo.done).length
- }
- },
- methods: {
- tryAddTodo (e) {
- var text = e.target.value
- if (text.trim()) {
- this.addTodo(text)
- }
- e.target.value = ''
- }
- },
- filters: {
- pluralize: (n, w) => n === 1 ? w : (w + 's'),
- capitalize: s => s.charAt(0).toUpperCase() + s.slice(1)
- }
- }
- </script>
|