[Vuejs]-How can I fix Vuejs dynamic image src error

0๐Ÿ‘

โœ…

      <img
      :src="profileImage.profilephoto"
      alt="Profile Image"
    />

  profileImage() {
       return {
  ...this.memberdata, 
  profilephoto: this.memberdata.profilephoto && require(`../../../../php/laravel/token/storage/app/uploads/profilephotos/${this.memberdata.profilephoto}`)
}

i solved the errror with these codes.

Leave a comment