Vue2.0—Vue中的key有什么作用?

Posted 王同学要努力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue2.0—Vue中的key有什么作用?相关的知识,希望对你有一定的参考价值。

【Vue2.0】—Vue中的key有什么作用?(四)



 <div id="root">
        <!-- 遍历数组 -->
        <ul>
            <button @click.once="add">添加一个老刘</button>

            <li v-for="(p,index) in  persons" :key="p.id">{{p.name}}--{{p.age}}
                <input type="text">
            </li>
        </ul>
    </div>
    <script>
        Vue.config.productionTip = false;

        new Vue({
            el: '#root',
            data: {
                persons: [{
                    id: '001',
                    name: '张三',
                    age: 18
                }, {
                    id: '002',
                    name: '李四',
                    age: 19
                }, {
                    id: '003',
                    name: '刘宇',
                    age: 20
                }],
                car: {
                    name: '奔驰',
                    price: 10000,
                    color: 'blue'
                },
                str: 'abcd'

            },
            methods: {
                add() {
                    const p = {
                        id: '004',
                        name: '老刘',
                        age: 21
                    }
                    this.persons.unshift(p)
                }
            }
        })
    </script>

以上是关于Vue2.0—Vue中的key有什么作用?的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0 代码功能片段

vue2.0有哪些变化

vue2.0的变化

vue2.0 props 数据传递

vue2.0学习笔记之组件

vue2.0函数(箭头函数)的this作用域