v-for中key的作用 例如我们用v-for渲染一个列表[1, 2, 4 ,5],然后在中间插入一个3变成[1,2,3,4,5]。v-for写了key和没有写key,Vue是怎么处理的呢? Vue对有key的会调用patchKeyedChildren方法;没有key的调用patchUnkeyedChildren方法; 接下来看看源码里面这两个方法是怎么实现的把 patchKeyedChildren patchUnkeyedChildren