色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

vue img 大小

Vue是一套構(gòu)建用戶界面的漸進(jìn)式JavaScript框架。其中,img標(biāo)簽是Vue中常用的元素之一。在使用Vue的過(guò)程中,我們經(jīng)常需要設(shè)置img的大小來(lái)適應(yīng)不同的布局需求。

在Vue中,可以通過(guò)v-bind指令來(lái)動(dòng)態(tài)地設(shè)置img標(biāo)簽的大小。具體實(shí)現(xiàn)方式如下:

<template>
<div>
<img v-bind:src="imgSrc" v-bind:style="{width: imgWidth, height: imgHeight}">
</div>
</template>
<script>
export default {
data() {
return {
imgSrc: 'https://xxx.jpg',
imgWidth: '200px',
imgHeight: '200px'
}
}
}
</script>

在上述代碼中,通過(guò)v-bind指令綁定了img標(biāo)簽的src、width和height屬性。imgWidth和imgHeight的值可以是具體的數(shù)值,也可以是計(jì)算表達(dá)式。例如:

<template>
<div>
<img v-bind:src="imgSrc" v-bind:style="{width: imgWidth + 'px', height: imgHeight + 'px'}">
</div>
</template>
<script>
export default {
data() {
return {
imgSrc: 'https://xxx.jpg',
imgWidth: 200,
imgHeight: 200
}
},
computed: {
imgWidthPx() {
return this.imgWidth + 'px'
},
imgHeightPx() {
return this.imgHeight + 'px'
}
}
}
</script>

在這個(gè)例子中,imgWidth和imgHeight的值是200,但通過(guò)計(jì)算屬性imgWidthPx和imgHeightPx,實(shí)現(xiàn)了在模板中綁定像素值。