利用vue去操控css的transition/animation动画
模板: 使用包含带动画的标签
css样式
.fade-enter-active: 进入过程, 指定进入的transition.fade-leave-active: 离开过程, 指定离开的transition.xxx-enter, .xxx-leave-to: 指定隐藏的样式
编码例子
.xxx-enter-active, .xxx-leave-active {transition: opacity .5s}.xxx-enter, .xxx-leave-to {opacity: 0}<transition name="xxx"><p v-if="show">hello</p></transition>
