首頁  >  問答  >  主體

Vue.js中如何實作動態的:src?

我希望使用v-bind:src動態渲染一個有v-for影像src的v-vor影像。儘管圖像目錄似乎是正確的(但我如何檢查呢?)並且其他數組鍵被顯示,但我在模板中看不到圖標。

structure:   src 
                - assets              // 图像内部 
                -components           // 组件内部    
                
<q-card v-for="benefit in benefits" :key="benefit.title">
        <img class="benefits__item-icon" :src="benefit.icon" :alt="benefit.alt">
        <q-card-section >
          <div>{{benefit.content}}</div>
        </q-card-section>
      </q-card>

data() {
      return {
        benefits: [
          {
            icon: '../assets/benefits-icon.svg',  //不显示
            alt: 'benefits',       //正常显示
            title: 'plain text',   //正常显示
            content: 'plain text'   //正常显示
          },
        ]
       }
     }

P粉937769356P粉937769356419 天前628

全部回覆(1)我來回復

  • P粉310754094

    P粉3107540942023-09-17 00:37:16

    嘗試更改此程式碼

    1. <img class="benefits__item-icon" :src="require(benefit.icon)"
        :alt="benefit.alt">

    回覆
    0
  • 取消回覆