0
点赞
收藏
分享

微信扫一扫

vue实现todolist小案例~

笙烛 2022-01-22 阅读 57

效果如图:

 

代码如下: 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div id="app">
        <h2>{{title}}</h2>
        <input type="text" v-model="title" @keydown.enter="addTodo">
        <button v-if="active < all" @click="clear">清理</button>
        <ul v-if="todos.length">
            <li v-for="todo in todos">
                <input type="checkbox" v-model="todo.done">
                <span :class="{done:todo.done}">{{todo.title}}</span>
            </li>
        </ul>
        <div v-else>暂无数据</div>
        <div>
            全选<input type="checkbox" v-model="allDone">
            <span>{{active}} / {{all}}</span>
        </div>
    </div>
</body>

<script src="https://unpkg.com/vue@next"></script>
<script>
const App = {
    data() {
        return {
            title: "",// 定义一个数据
            todos: [
                {title:'吃饭',done:false},
                {title:'睡觉',done:true},
            ]
        }
    },
    methods: {
        addTodo(){
            this.todos.push({
                title: this.title,
                done: false
            })
            this.title = ""
        },
        clear() {
            this.todos = this.todos.filter(v => !v.done)
        }
    },
    computed: {
        active() {
            return this.todos.filter(v => ! v.done).length
        },
        all(){
            return this.todos.length
        },
        allDone: {
            get: function() {
                return this.active === 0
            },
            set: function(val){
                this.todos.forEach(todo =>{
                    todo.done = val
                });
            }
        }
    }
}
Vue.createApp(App).mount('#app')
</script>

<style>
    .done{
        color: gray;
        text-decoration: line-through;
    }
    
</style>
</html>
举报

相关推荐

0 条评论