LoginSignup
1
2

More than 5 years have passed since last update.

vue.jsでv-forを使う時、imgタグや背景をいじりたい

Last updated at Posted at 2018-12-19

imgタグのURLや、background-imageなどのURLを触りたい時


<ul class="list" v-show="hoge === 0">
    <li class="list-item" v-for="(n , index) in 20">
        <img class="list-item__image" :src="'https://hogehoge.com/no_'+ (index +1) +'.png'"> //1番目から
        <div class="list-item__background-image" v-bind:style="{height:10 +'px', width:10 +'px', backgroundImage:'url(https://hogehoge.com/no_'+ (index +1) +'.png)'}"></div>
    </li>
</ul>

n.imageとかで情報を持っていればいいのですが、ない時に。。。

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