通过animation实现display的block与none的动画效果

html:


js:

data() {
  return {
    showList: false // 开始隐藏
  }
},
methods: {
  hideList() {
    this.showList = false
  }
}

stylus:

 

你可能感兴趣的:(css3)