8 vue animationend and transitionend
source: categories/study/vue-experiance/vue-experiance_7.md
8. vue animationend and transitionend
vue에선 animationend 이런 animation 관련 이벤트는 지원안하나봄..
지원해도 transition 같은 태그로 지원하나봄..?
이는 좀 더 파봐야될듯.
그래도 transitionend 같은 transition 이벤트는 지원한다.
여튼 일단 아래와 같이 구현했다.
정상작동한다.
<script>
export default {
mounted() {
this.$refs.popup_inner.addEventListener('animationend', this.popupAnimationEnd)
},
beforeDestroy() {
this.$refs.popup_inner.removeEventListener('animationend', this.popupAnimationEnd)
}
}
</script>