vue 2.0 同个组件 props 数据被影响了?

例子
http://codepen.io/353943780/p...

操作:先点击上部分的 li,再点击下部分的 li,结果发现上部分选择的值被改变了,请问是什么原因导致的呢?

1.x 版本不会出现这样的情况

阅读 2.6k
1 个回答

In addition, every time the parent component is updated, all props in the child component will be refreshed with the latest value. This means you should not attempt to mutate a prop inside a child component. If you do, Vue will warn you in the console.
via http://vuejs.org/guide/compon...

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题