You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div class="todo-bottom">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox">
|
|
|
|
</label>
|
|
|
|
<span>
|
|
|
|
<span>已完成0</span>/全部2
|
|
|
|
</span>
|
|
|
|
<button class="btn btn-danger">清除已完成任务</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "TodoBottom"
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.todo-bottom{
|
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
padding-left: 6px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.todo-bottom label{
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.todo-bottom label input {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.todo-bottom button {
|
|
|
|
float: right;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
</style>
|