How to set image path in src attribute using vue 2

Can such an attribute be specified?

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

      

does not work.

+3


source to share


2 answers


After editing @ SLYcee's answer for the combined JSTL solution:



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

      

+1


source


Use :v-bind

(or shortcut ":") instead of "{{ }}"

: v-bind

So :src="Any javascript here !"



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

      

urlPath

and flight.OperatingAirline._CompanyShortName

must be a javascript variable.

+3


source







All Articles