İs that possible to give an attribute like that?
src="${urlPath}/img/icon-{{flight.OperatingAirline._CompanyShortName}}.png"
doesn't works.
Use :v-bind (or shortcut ":") instead of "{{ }}" : v-bind
So :src="Any javascript here !"
:src="urlPath + '/img/icon-' + flight.OperatingAirline._CompanyShortName + '.png'"
urlPathandflight.OperatingAirline._CompanyShortNamemust be a javascript variable.