1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vue.js の Transition で、データの変更時にアニメーションを実行する方法

Posted at

通常、下記のコードだと Vue router によって router-view 配下の Component が変更された時に実行される。

  <transition name="slide-fade">
    <router-view />
  </transition>

Component を使いまわしてデータのみ変更する場合にもアニメーションを実行したい時があったので調べてみました。

その方法

key を設定することで、Vue が異なる要素と認識してアニメーションが実行される。

  <transition name="slide-fade">
    <router-view :key="data.id" />
  </transition>
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?