250x250
Notice
Recent Posts
Recent Comments
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

진스

Vue Router Transitions(라우터 트랜지션) 본문

Vue

Vue Router Transitions(라우터 트랜지션)

입방정 2021. 4. 23. 11:15
728x90

참고.

router.vuejs.org/guide/advanced/transitions.html#per-route-transition

 

Transitions | Vue Router

Transitions Since the is essentially a dynamic component, we can apply transition effects to it the same way using the component: All transition APIs work the same here. Per-Route Transition The above usage will apply the same transition for all routes. If

router.vuejs.org

 

<트랜지션 태그 안에 있는 템플릿들에 효과를 부여한다.>

 

 

방법1.  이렇게 <router-view>를  <transition>으로 감싼후 아래 링크 참고

App.vue

1
2
3
<transition>
  <router-view></router-view>
</transition>
cs

All transition APIs work the same here.

위 링크를 접속하면 아래 화면이 나오는데.

vuejs.org/v2/guide/transitions.html

 

Enter/Leave & List Transitions — Vue.js

Vue.js - The Progressive JavaScript Framework

vuejs.org

 

방법2. <transition>안에 이름을 붙이고 스타일에 아래 처럼 입력하면 끝.

App.vue

728x90
Comments