1. vue1.0的生命周期:init,created,beforeComplie,compiled,ready,attached,detached,beforeDestory,destoryed
vue2.0的生命周期:beforeCreate,created,beforeMount,monted,beforeUpdate,updated,actived,deactived,beforeDestory,destoryed
2.在vue2.0中在template编写时,必须只有一个根元素
<template>
<div id='root'>
<div>这是第一行</div>
</div>
<template>
3.for循环遍历数组对象的区别
遍历数组之前是(index,value),现在是(value,index);对象的之前是(key,value),现在是(value,key)
4.如果需要检查 prop 的值,创建一个内部的 computed 值,vue1.0需要在而 props 内部去定义coerce
5.transition 参数 替换,Vue 的过渡系统有了彻底的改变,现在通过使用 <transition> 和 <transition-group> 来包裹元素实现过渡效果,而不再使用 transition 属性;
。。。。。。等等等没写完呢