使用 Vue.js 2 创建 Todo App

All the code for this post can be found on Github.

Vue is a simple and minimal progressive JavaScript framework that can be used to build powerful web applications incrementally.

Vue is a lightweight alternative to other JavaScript frameworks like AngularJS. With an intermediate understanding of HTML, CSS and JS, you should be ready to get up and running with Vue.

Prepare

We'll need the Vue CLI to get started. The CLI provides a means of rapidly scaffolding Single Page Applications and in no time you will have an app running with hot-reload and production-ready builds.

Vue CLI offers a zero-configuration development tool for jumpstarting your Vue apps and component.

A lot of the decisons you have to make regarding how your app scales in future are taken care of. The Vue CLI comes with an array of templates that provide a self-sufficient, out-of-the-box ready to use package. The currently available templates are:

webpack - A full-featured Webpack + Vue-loader setup with hot reload, linting, testing & CSS extraction.

webpack-simple - A simple Webpack + Vue-loader setup for quick prototyping.

browserify - A full-featured Browserify + vueify setup with hot-reload, linting & unit testing.

browserify-simple - A simple Browserify + vueify setup for quick prototyping.

simple - The simplest possible Vue setup in a single HTML file

Simply put, the Vue CLI is the fastest way to get your apps up and running.

# install vue-cli
$ npm install --global vue-cli
Creating A Vue 2 Application

Next, we'll set up our Vue app with the CLI.

# create a new project using the "webpack" template
$ vue init webpack todo-app

# install dependencies and go!
$ cd todo-app
$ npm install
$ npm run dev

To style our application we will use Semantic and SweetAlert. Add the minified JavaScript and CSS scripts and links to your index.html file.

<link href="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/semantic-ui/2.2.10/semantic.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/semantic-ui/2.2.10/semantic.min.js"></script>
<script src="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js"></script>
Component structure

Every Vue app, needs to have a top level component that serves as the framework for the entire application. Fo our application, we will have a main component and nested within shall be a TodoList Component. Within this there will be todo sub-components.

Main App Component

Let's dive into building our application. First, we'll start with the main top level component. The Vue CLI already generates a main component that can be found in src/App.vue. We will build out the other necessary components.

Creating a Component

The Vue CLI creates a component Hello during set up that can be found in src/components/Hello.vue. We will create our own component called TodoList.vue and won't be needing this anymore.
Inside of the new TodoList.vue file, write the following:

<template>
</template>

<script>
    export default {}
</script>

<style>
</style>

A component file consists three parts: template, script and style. The template area is the visual part of a component. Behaviour, events and data storage for the template are handled by the script. The style serves to further improve the appearance of the template.

Importing Components

To utilize the component we just created, we need to import it in our main component. Inside of src/App.vue make the following changes:

// add this line
import TodoList from './components/TodoList'  
// remove this line
import Hello from './components/Hello'  

We will also need to reference the TodoList component in the components property and delete the previous reference to Hello Component. After the changes, our script should look like this.

<script>
    import TodoList from './components/TodoList'

    export default {
        components: {
            // Add a reference to the TodoList component in the components property
            TodoList
        }
    }
</script>

To render the component, we invoke it like an HTML element.

<template>
    <div>
        <TodoList></TodoList>
    </div>
</template>
Adding Component Data

We will need to supply data to the main component that will be used to display the list of todos. Our todos will have three properties: The title, project and done(to indicate if the todo is complete or not). Components avail data to their respective templates using a data function. This function returns an object with the properties intended for the template. Let's add some data to our component.

export default {
    components: {
        TodoList
    },
    // data function avails data to the template
    data() {
        return {
            todos: [{
                title: 'Todo A',
                project: 'Project A',
                done: false,
            }, {
                title: 'Todo B',
                project: 'Project B',
                done: true,
            }, {
                title: 'Todo C',
                project: 'Project C',
                done: false,
            }]
        }
    }
}

We will need to pass data from the main component to the TodoList component. For this, we will use the v-bind directive. The directive takes an argument which is indicated by a colon after the directive name. Our argument will be todos which tells the v-bind directive to bind the element’s todos attribute to the value of the expression todos.

<TodoList :todos="todos"></TodoList>

The todos will now be available in the TodoList component as todos. We will have to modify our TodoList component to access this data. The TodoList component has to declare the properties it will accept when using it.

export default {  
    props: ['todos'],
}
Looping and Rendering Data

Inside our TodoList template lets loop over the list of Todos and also show the the number of completed and uncompleted tasks. To render a list of items, we use the v-for directive. The syntax for doing this is represented as v-for="item in items" where items is the array with our data and item is a representation of the array element being iterated on.

<template>
    <div>
        <!--JavaScript expressions in Vue are enclosed in double curly brackets.-->
        <p>Completed Tasks: {{todos.filter(todo => {return todo.done === true}).length}}</p>
        <p>Pending Tasks: {{todos.filter(todo => {return todo.done === false}).length}}</p>
        <div class='ui centered card' v-for="todo in todos">
            <div class='content'>
                <div class='header'>
                    {{ todo.title }}
                </div>
                <div class='meta'>
                    {{ todo.project }}
                </div>
                <div class='extra content'>
                    <span class='right floated edit icon'>
                        <i class='edit icon'></i>
                    </span>
                </div>
            </div>
            <div class='ui bottom attached green basic button' v-show="todo.done">
                Completed
            </div>
            <div class='ui bottom attached red basic button' v-show="!todo.done">
                Pending
            </div>
        </div>
    </div>    
</template>
<script>
    export default {
        props: ['todos'],
    }
</script>
Editing a Todo

Let's extract the todo template into it's own component for cleaner code. Create a new component file Todo.vue in src/components and transfer the todo template. Our file should now look like this:

<template>
    <div class='ui centered card'>
        <div class="content" v-show="!isEditing">
            <div class='header'>
                {{ todo.title }}
            </div>
            <div class='meta'>
                {{ todo.project }}
            </div>
            <div class='extra content'>
                <span class='right floated edit icon item' @click="isEditing=true">
                    <i class='edit link icon'></i>
                </span>
            </div>
        </div>
        <div class='ui bottom attached green basic button' v-show="!isEditing && todo.done" disabled>
            Completed
        </div>
        <div class='ui bottom attached red basic button' v-show="!isEditing && !todo.done" @click="completeTodo(todo)">
            Pending
        </div>
    </div>
</template>
</template>
<script>
    export default {
        props: ['todo'],

    }
</script>

In the TodoList component refactor the code to render the Todo component. We will also need to change the way our todos are passed to the Todo component. We can use the v-for attribute on any components we create just like we would in any other element. The syntax will be like this: <my-component v-for="item in items" :key="item.id"></my-component>. Note that from 2.2.0 and above, a key is required when using v-for with components. An important thing to note is that this does not automatically pass the data to the component since components have their own isolated scopes. To pass the data, we have to use props.

<my-component v-for="(item, index) in items" v-bind:item="item"  v-bind:index="index">
</my-component>

Our refactored TodoList component template:

<template>
    <div>
    
        <p class="tasks">Completed Tasks: {{todos.filter(todo => {return todo.done === true}).length}}</p>
    
        <p class="tasks">Pending Tasks: {{todos.filter(todo => {return todo.done === false}).length}}</p>
    
        <!--we are now passing the data to the todo component to render the todo list-->

        <Todo v-for="(todo, index) in todos" :todo="todo" :key="index"></Todo>
    </div>
</template>

<script>
    import Todo from './Todo'

    export default {
        props: ['todos'],
        components: {
            Todo
        }
    }
</script>

<style>
    .tasks {
        text-align: center;
    }
</style>

Let's add a property to the Todo component class called isEditing. This will be used to dertermine whether the Todo is in edit mode or not. We will have an event handler on the Edit span in the template. This will trigger the showForm method when it gets clicked. This will set the isEditing property to true. Before we take a look at that, we will add a form and set conditionals to show the todo or the edit form depending on whether isEditing property is true or false. Our file should now look like this.

<template>
    <div class='ui centered card'>
        <!--Todo shown when we are not in editing mode.-->
        <div class="content" v-show="!isEditing">
            <div class='header'>
                {{ todo.title }}
            </div>
            <div class='meta'>
                {{ todo.project }}
            </div>
            <div class='extra content'>
                <span class='right floated edit icon item' @click="isEditing=true">
                    <i class='edit link icon'></i>
                </span>
            </div>
        </div>
        <!--form is visible when we are in editing mode-->
        <div class="content" v-show="isEditing">
            <div class='ui form'>
                <div class='field'>
                    <label>Title</label>
                    <input type='text' v-model="todo.title">
                </div>
                <div class='field'>
                    <label>Project</label>
                    <input type='text' v-model="todo.project">
                </div>
                <div class='ui two button attached buttons'>
                    <button class='ui basic blue button' @click="isEditing=false">
                        Close
                    </button>
                </div>
            </div>
        </div>
        <div class='ui bottom attached green basic button' v-show="!isEditing && todo.done" disabled>
            Completed
        </div>
        <div class='ui bottom attached red basic button' v-show="!isEditing && !todo.done">
            Pending
        </div>
    </div>
</template>
</template>
<script>
export default {
    data() {
        return {
            isEditing: false
        }
    },
    props: ['todo']

}
</script>
Deleting a Todo

Let's begin by adding an icon to delete a Todo just below the edit icon.

<template>
    <span class='right floated edit icon' v-on:click="isEditing=true">
        <i class='edit link icon'></i>
    </span>
    <!-- add the trash icon in below the edit icon in the template -->
    <span class='right floated trash icon' v-on:click="deleteTodo(todo)">
        <i class='trash link icon'></i>
    </span>
</template>

Next, we'll add a method to handle the icon click. This method will emit an event delete-todo to the parent TodoList Component and pass the current Todo to delete. We will add an event listener to delete icon.

// Todo component
methods:{
    deleteTodo(todo){
        this.$emit('delete-todo', todo)
    }
}

The parent component(TodoList) will need an event handler to handle the delete. Let's define it.

// TodoList component
methods:{
    deleteTodo(todo){
        swal({
            title: "Are you sure?",
            text: "This To-Do will be permanently deleted!",
            type: "warning",
            showCancelButton: true,
            confirmButtonColor: "#DD6B55",
            confirmButtonText: "Yes, delete it!",
            closeOnConfirm: false
            },
            () => {
                const todoIndex = this.todos.indexOf(todo)
                this.todos.splice(todoIndex, 1)
                swal("Deleted!", "Your To-Do has been deleted.", "success")
            });
    }
}

The deleteTodo method will be passed to the Todo component as follows.

<!-- TodoList template -->
<Todo v-for="(todo, index) in todos" :todo="todo" :key="index" @delete-todo="deleteTodo"></Todo>

Once we click on the delete icon, an event will be emitted and propagated to the parent component which will then delete it.

Adding A New Todo

To create a new todo, we'll start by creating a new component CreateTodo.vue in src/components. This will display a button with a plus sign that will turn into a form when clicked. It should look something like this.

<template>
    <div class='ui basic content center aligned segment'>
        <button class='ui basic button icon' @click="isCreating=true" v-show="!isCreating">
            <i class='plus icon'></i>
        </button>
        <div class='ui centered card' v-show="isCreating">
            <div class='content'>
                <div class='ui form'>
                    <div class='field'>
                        <label>Title</label>
                        <input type='text' v-model="titleText">
                    </div>
                    <div class='field'>
                        <label>Project</label>
                        <input type='text' v-model="projectText">
                    </div>
                    <div class="ui buttons">
                        <button class="ui positive button" @click="sendForm">Create</button>
                        <div class="or"></div>
                        <button class="ui button" @click="isCreating=false">Cancel</button>   
                    </div>
                </div>
            </div>
        </div>
    </div>
</template>

<script>
export default {
    data() {
        return {
            titleText: '',
            projectText: '',
            isCreating: false,
        }
    },
    methods: {
        sendForm() {
            const title = this.titleText;
            const project = this.projectText;
            if (title.length > 0 && project.length > 0) {
                this.$emit('add-todo', {title, project, done: false})
                this.titleText = ''
                this.projectText = ''
            }
            this.isCreating = false
        }
    }
};
</script>

After creating the new component, we import it and add it to the components property.

// Main Component App.vue
import CreateTodo from './components/CreateTodo'

export default {
    components: {
        TodoList,
        CreateTodo
    }
}

We'll also add a method for creating new Todos.

// App.vue
methods:{
    addTodo(todo){
        this.todos.push(todo)
        swal("Success!", "To-Do created!", "success")
    }
}

The CreateTodo component will be invoked in the App.vue template as follows:

<CreateTodo @add-todo="addTodo"></CreateTodo>
Completing A Todo

Finally, we'll add a method completeTodo to the Todo Component that emits an event complete-todo to the parent component when the pending button is clicked and sets the done status of the todo to true.

// Todo component
methods:{
    completeTodo(todo) {
        this.$emit('complete-todo', todo);
    }
}

An event handler will be added to the TodoList component process the event.

// TodoList component
methods:{
    completeTodo(todo) {
        const todoIndex = this.todos.indexOf(todo)
        this.todos[todoIndex].done = true
        swal("Success!", "To-Do completed!", "success")
    }
}

To pass the TodoList method to the Todo component we will add it to the Todo component invokation.

<Todo v-for="(todo, index) in todos" :todo="todo" :key="index" @delete-todo="deleteTodo" @complete-todo="completeTodo"></Todo>
Conclusion

We have learned how to initialize a Vue app using the Vue CLI. In addition, we learned about component structure, adding data to components, event listeners and event handlers. We saw how to create a todo, edit it and delete it.

Screenshot
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 158,847评论 4 362
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,208评论 1 292
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,587评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,942评论 0 205
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,332评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,587评论 1 218
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,853评论 2 312
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,568评论 0 198
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,273评论 1 242
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,542评论 2 246
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,033评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,373评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,031评论 3 236
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,073评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,830评论 0 195
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,628评论 2 274
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,537评论 2 269

推荐阅读更多精彩内容