3
0

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 3 years have passed since last update.

[Vue.js]自前でv-forとv-ifを同時に利用しないスライダーを実装する

Posted at

この記事で書くこと

ソースの公開。

この記事を書く理由

Nuxtでアプリケーションを作成している時に、「スライダーを実装したいけど、モジュールを入れるほどじゃない、、」と思った時、いくつか記事をみたのですが、以下のように実装されているものが多かったです。


<div>
  <transition :name="slider">
    <div :key="idx" v-for="(content, idx) in contents" v-if="content.id== idx"/>
       // 中身
    </div>
  </transition>
</div>

この実装は、うまく表示されますが、一つ問題があります。それは、v-ifとv-forを同時に使用していることです。
Vue.jsのドキュメントにあるように、これは非推奨となっています。:disappointed_relieved:Vue.jsドキュメント
なので、タイトル通り、v-forとv-ifを同時に利用しないスライダーを実装してみました。

ソース

See the Pen vue-slider by RyoTa (@RyoTa0222) on CodePen.

改良の余地等あるかもしれません。コメントいただければ幸いです!:pray:

3
0
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
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?