オプション1
その後、あなたは小さな変更で@choasiaによって提案された解決策と一緒に行く、一行だけを使用したいと。
<img :src="pointshover ? pointshover : leaderPoints[0].playerimg" :key="pointshover" class="leaderimg">
そうでない時に[0] .playerimgこの画像が常に表示されるようあなたがv-場合は必要ありませんし、それが存在する場合にのみpointshover srcを持ち、leaderPointsます。
オプション2
あなたは2行のコードで行く場合は、おそらく使用する必要があります。
<img v-if="pointshover" :src="pointshover" :key="pointshover" class="leaderimg">
<img v-else :src="leaderPoints[0].playerimg" :key="pointshover" class="leaderimg">
それはあなたがそれ以外を使用する場合に達成したいものを明確です。
オプション3
あなたはSRCをバインドするcomputed propertyを使用することができます。
<img :src="myImageSource" :key="pointshover" class="leaderimg">
myImageSource(){
return this.pointshover ? this.pointshover : this.leaderPoints[0].playerimg;
}