目录
2.3 UserList.vue 和 UserItem.vue
一、组件化编码流程(通用)
- 实现静态组件:抽取组件没使用组件实现静态页面
- 展示动态数据:
- 数据的类型、名称是什么
- 数据保存在哪个组件
- 交互 —— 从绑定事件监听开始
二、TodoList案例 - 未使用全局事件总线
2.1 Vue.app
Vue.app引用并使用了头部组件、列表组件、底部组件,包含 todos数据 以及与头部组件、列表组件、底部组件实现通信的方法
<template>
<div id="root">
<div class="todo-container">
<div class="todo-wrap">
<UserHeader :addTodo="addTodo"></UserHeader>
<UserList
:todos="todos"
:checkTodo="checkTodo"
:deleteTodo="deleteTodo"
></UserList>
<UserFooter
:todos="todos"
:checkAllTodo="checkAllTodo"
:clearAllTodo="clearAllTodo"
></UserFooter>
</div>
</div>
</div>
</template>
<script>
import UserHeader from "./components/UserHeader.vue";
import UserList from "./components/UserList.vue";
import UserFooter from "./components/UserFooter.vue";
export default {
name: "App",
components: { UserHeader, UserList, UserFooter },
data() {
return {
todos: [
{ id: "001", title: "吃饭", done: true },
{ id: "002", title: "睡觉", done: false },
{ id: "003", title: "打豆豆", done: true },
],
};
},
methods: {
// 添加一个todo
addTodo(todoObj) {
this.todos.unshift(todoObj);
},
// 勾选或取消勾线一个todo
checkTodo(id) {
this.todos.forEach((todo) => {
if (todo.id === id) todo.done = !todo.done;
});
},
// 删除一个todo
deleteTodo(id) {
this.todos = this.todos.filter((todo) => todo.id !== id);
},
// 全选或取消全选
checkAllTodo(done) {
this.todos.forEach((todo) => {
todo.done = done;
});
},
// 清除所有已经完成的todo
clearAllTodo() {
this.todos = this.todos.filter((todo) => {
return !todo.done;
});
},
},
};
</script>
<style>
/*base*/
body {
background: #fff;
}
.btn {
display: inline-block;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
line-height: 20px;
text-align: center;
vertical-align: middle;
cursor: pointer;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
0 1px 2px rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
.btn-danger {
color: #fff;
background-color: #da4f49;
border: 1px solid #bd362f;
}
.btn-danger:hover {
color: #fff;
background-color: #bd362f;
}
.btn:focus {
outline: none;
}
.todo-container {
width: 600px;
margin: 0 auto;
}
.todo-container .todo-wrap {
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
</style>
2.2 UserHeader.vue
UserHeader.vue 实现添加的事件,通过输入框内输入内容,按下enter键(回车键)将输入内容添加进行列表中
<template>
<div class="todo-header">
<input
type="text"
placeholder="请输入你的任务名称,按回车键确认"
v-model.trim="title"
@keyup.enter="add"
/>
</div>
</template>
<script>
import { nanoid } from "nanoid";
export default {
name: "UserHeader",
props: ["addTodo"],
data() {
return {
title: "",
};
},
methods: {
add(e) {
// 校验数据
if (!this.title) return alert("输入不能为空");
// 将用户的输入包装成一个todo对象
const todoObj = { id: nanoid(), title: this.title, done: false };
// 通知App组件去添加一个todo对象
this.addTodo(todoObj);
// 清空输入
this.title = "";
},
},
};
</script>
<style scoped>
/*header*/
.todo-header input {
width: 560px;
height: 28px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 4px 7px;
}
.todo-header input:focus {
outline: none;
border-color: rgba(82, 168, 236, 0.8);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
0 0 8px rgba(82, 168, 236, 0.6);
}
</style>
2.3 UserList.vue 和 UserItem.vue
UserList.vue 起到遍历 todos数据 以及 作为 UserItem.vue 和 App.vue 之间通信媒介作用
<template>
<ul class="todo-main">
<UserItem
v-for="todoObj in todos"
:key="todoObj.id"
:todo="todoObj"
:checkTodo="checkTodo"
:deleteTodo="deleteTodo"
></UserItem>
</ul>
</template>
<script>
import UserItem from "./UserItem.vue";
export default {
name: "UserList",
components: { UserItem },
props: ["todos", "checkTodo", "deleteTodo"],
};
</script>
<style scoped>
/*main*/
.todo-main {
margin-left: 0px;
border: 1px solid #ddd;
border-radius: 2px;
padding: 0px;
}
.todo-empty {
height: 40px;
line-height: 40px;
border: 1px solid #ddd;
border-radius: 2px;
padding-left: 5px;
margin-top: 10px;
}
</style>
UserItem.vue 实现了改变checkbox勾选状态,改变todos数据中的 done属性的布尔值 以及删除单个todo(列表中的事件)功能
<template>
<li>
<label>
<input
type="checkbox"
:checked="todo.done"
@change="handleCheck(todo.id)"
/>
<span>{{ todo.title }}</span>
</label>
<button class="btn btn-danger" @click="handleDelete(todo.id)">删除</button>
</li>
</template>
<script>
export default {
name: "UserItem",
props: ["todo", "checkTodo", "deleteTodo"],
methods: {
// 勾选或取消勾选
handleCheck(id) {
// 通过App组件将对应的todo对象的done值取反
this.checkTodo(id);
},
handleDelete(id) {
if (confirm("您确认删除吗?")) {
this.deleteTodo(id);
}
},
},
};
</script>
<style scoped>
/*item*/
li {
list-style: none;
height: 36px;
line-height: 36px;
padding: 0 5px;
border-bottom: 1px solid #ddd;
}
li label {
float: left;
cursor: pointer;
}
li label li input {
vertical-align: middle;
margin-right: 6px;
position: relative;
top: -1px;
}
li button {
float: right;
display: none;
margin-top: 3px;
}
li:before {
content: initial;
}
li:last-child {
border-bottom: none;
}
li:hover {
background-color: #ddd;
}
li:hover button {
display: block;
}
</style>
2.4 UserFooter.vue
UserFooter.vue 实现了下方显示数字与todos数据的交互,checkbox框全选和全部选功能,以及点击按钮实现点击实现清除所有已完成 todo(列表中事件)功能
<template>
<div class="todo-footer" v-show="total">
<label>
<!-- 方法一 -->
<!-- <input type="checkbox" :checked="isAll" @change="checkAll" /> -->
<input type="checkbox" v-model="isAll" />
</label>
<span>
<span>已完成{{ doneTotal }}</span> / 全部{{ total }}
</span>
<button class="btn btn-danger" @click="clearAll">清除已完成任务</button>
</div>
</template>
<script scoped>
export default {
name: "UserFooter",
props: ["todos", "checkAllTodo", "clearAllTodo"],
computed: {
total() {
return this.todos.length;
},
doneTotal() {
// 对应方法一和二
// let i = 0;
// this.todos.forEach((todo) => {
// if (todo.done) i++;
// });
// return i;
// 对应方法一和二 reduce使用 - 正常写法
// return this.todos.reduce((pre, current) => {
// return pre + (current.done ? 1 : 0);
// }, 0);
// 对应方法一和二 reduce使用 - 精简写法
return this.todos.reduce((pre, todo) => pre + (todo.done ? 1 : 0), 0);
},
// 对应方法一
// isAll() {
// return this.total === this.doneTotal && this.total > 0;
// },
// 对应方法二
isAll: {
get() {
return this.total === this.doneTotal && this.total > 0;
},
set(value) {
this.checkAllTodo(value);
},
},
},
methods: {
// 对应方法一
// checkAll(e) {
// this.checkAllTodo(e.target.checked);
// },
clearAll() {
if (confirm("您确认要清除已完成的任务吗?")) {
this.clearAllTodo();
}
},
},
};
</script>
<style>
/*footer*/
.todo-footer {
height: 40px;
line-height: 40px;
padding-left: 6px;
margin-top: 5px;
}
.todo-footer label {
display: inline-block;
margin-right: 20px;
cursor: pointer;
}
.todo-footer label input {
position: relative;
top: -1px;
vertical-align: middle;
margin-right: 5px;
}
.todo-footer button {
float: right;
margin-top: 5px;
}
</style>
三、TodoList案例总结
3.1 组件化编程流程
- 拆分静态组件:组件要按照功能点拆分,命名不要与html冲突
- 实现动态组件:考虑好数据的存放位置,数据是一个组件在用,还是一些组件在用
- 一个组件在用:放在组件自身即可
- 一些组件在用:放在它们共同的父组件上(状态提升)
- 实现交互:从绑定事件开始
3.2 关于props使用
props适用于:
- 父组件 ==> 子组件 通信
- 子组件 ==> 父组件 通信(要求父先给子一个函数)
3.3 注意事项
- 使用v-model时要切记:v-model绑定的值不能是props传过来的值,因为props是不可以修改的
- props传过来的若是对象类型的值,修改对象中的属性时Vue捕获报错,但不推荐这样做,因为props是不可以修改的