Vue.js değişkenini resim URL'si ile birleştirmek istiyorum.
Hesapladığım:
imgPreUrl : function() {
if (androidBuild) return "android_asset/www/";
else return "";
}
Android için oluşturursam:
<img src="/android_asset/www/img/logo.png">
Başka
<img src="img/logo.png">
Hesaplanan değişkeni URL ile nasıl birleştirebilirim?
Denedim:
<img src="{{imgPreUrl}}img/logo.png">