Search code examples
imageattributesvue.jsbindsrc

How to set an image path in src attribute using vue 2


İs that possible to give an attribute like that?

src="${urlPath}/img/icon-{{flight.OperatingAirline._CompanyShortName}}.png"

doesn't works.


Solution

  • After edit @SLYcee's answer for JSTL combined solution:

    :src="'${urlPath}/img/icon-' + flight.OperatingAirline._CompanyShortName + '.png'"