Vue not binding data to image src

前端 未结 1 1235
天命终不由人
天命终不由人 2021-01-22 21:51

I\'m having a problem binding data to src attribute in image. This is my code where I have :src and trying to bind image to it. Also I pri

1条回答
  •  臣服心动
    2021-01-22 22:08

    You should import that image since it considered as a module like :

    
    
        export default {
          name: 'How',
          data(){
            return{
              image: require('../../assets/img/how_to_oka_6.png')
            }
          }
        }
    

    0 讨论(0)
提交回复
热议问题