vue2.0 transition规范写法

html

 

hello

js

new Vue({
  el: '#demo',
  data: {
    show: true
  }
}) 

css

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s
}
.fade-enter, .fade-leave-active {
  opacity: 0
}

你可能感兴趣的:(vue2.0 transition规范写法)