I want to concatenate Vue.js variable with image URL.
What I computed:
imgPreUrl : function() {
if (androidBuild) return "android_asset/www/";
else return "";
}
If I build for android:
<img src="/android_asset/www/img/logo.png">
Else
<img src="img/logo.png">
How can I concatenate the computed variable with the URL?
I tried it:
<img src="{{imgPreUrl}}img/logo.png">
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…