# 图片 bd-image
<bd-image
:src="item.src || item.url"
mode="scaleToFill"
:isPreview="isPreview"
@click="clickImg(item)">
</bd-image>
import BdImage from '@/components/frame/default/bd-image.vue'
export default {
components: {
BdImage
}
}
属性 | 描述 | 类型 | 默认 |
---|---|---|---|
src | 图片路径 | String | - |
mode | 图片展示方式 | String | widthFix |
isPreview | 是否预览 | Boolean | true |
attachId | 附件id,此参数存在时,拼接src | String | - |