美文网首页
vue_23 vue 列表过渡

vue_23 vue 列表过渡

作者: basicGeek | 来源:发表于2018-11-08 14:05 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>列表过渡</title>
        <script src="./vue.js"></script>
        <style>
            .v-enter,.v-leave-to{
                opacity: 0;
            }
            .v-enter-active,.v-leave-active{
                transition: opacity 1s;
            }
        </style>
    </head>
    <body>
    
    
    <div id="root"> 
        <transition-group>
        <div v-for="item of list" :key="item.id">{{item.title}}</div>
        </transition-group>
        <button @click="handleclick">add </button>
    </div>
    
    <script>
    
        var count = 0;
        var vm = new Vue({
            el:"#root",
            data:{
                list:[]
            },
            methods:{
                handleclick:function(){
                    this.list.push({
                        id:count++,
                        title:'hello world'
                    })
    
                }
            }
        })
    </script>
    
        
    </body>
    </html>
    
    vue列表过渡vue列表过渡

    相关文章

      网友评论

          本文标题:vue_23 vue 列表过渡

          本文链接:https://www.haomeiwen.com/subject/jlkwxqtx.html