欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

vue img 標簽

劉柏宏2年前9瀏覽0評論

Vue中的img標簽可以用來呈現圖片。它可以使用v-bind指令來動態地綁定一個圖片URL到src屬性上:

<template>
<div>
<img v-bind:src="imgUrl">
</div>
</template>
<script>
export default {
data() {
return {
imgUrl: 'http://example.com/my-image.jpg'
}
}
}
</script>

我們可以把imgUrl綁定到一個計算屬性或者vuex store中:

<template>
<div>
<img v-bind:src="fullImageUrl">
</div>
</template>
<script>
export default {
computed: {
fullImageUrl() {
return this.$store.state.imageBaseUrl + this.currentImage.filename;
}
},
data() {
return {
currentImage: {
filename: 'my-image.jpg'
}
}
}
}
</script>

還可以使用v-if和v-else來實現圖片加載失敗的情況下顯示備用圖片或者錯誤信息:

<template>
<div>
<img v-bind:src="imgUrl" v-on:error="setImageNotFound">
<img v-if="imageNotFound" src="backup-image.jpg">
<p v-else>Failed to load image.</p>
</div>
</template>
<script>
export default {
data() {
return {
imageNotFound: false,
imgUrl: 'http://example.com/image-not-found.jpg'
}
},
methods: {
setImageNotFound() {
this.imageNotFound = true;
}
}
}
</script>

總之,Vue的img標簽非常強大,可以幫助我們實現各種圖片加載和展示的需求。