Skip to content

Img

Enhanced img tag that provides multiple image filling modes and supports image lazy loading, loading completion, and loading failure.

Basic Usage

Basic usage is consistent with the native image tag. You can set native attributes such as src, width, height, etc.

For native attributes, refer to uni-app image official documentation.

Note about the src attribute:

When using relative paths, note that src needs to be a relative path from the component's location to the image's location.

When using file import, note that WeChat Mini Program image tag paths accept binary data and base64 encoding. Using import image paths alone cannot be accessed.

html
<wd-img :width="100" :height="100" :src="joy" />
typescript
// import { joy } from '../images/joy'
const joy = 'data:image/jpeg;base64,...' // Image file base64

Slots

Use loading and error slots to set display content during image loading and after loading failure

vue
<template>
  <wd-img :width="100" :height="100" src="https://www.123.com/a.jpg">
    <template #error>
      <view class="error-wrap">Loading Failed</view>
    </template>
    <template #loading>
      <view class="loading-wrap">
        <wd-loading />
      </view>
    </template>
  </wd-img>
</template>

<style>
.error-wrap {
  width: 100%;
  height: 100%;
  background-color: red;
  color: white;
  line-height: 100px;
  text-align: center;
}

.loading-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
</style>

Fill Mode

You can set the image fill mode through the mode property. See the table below for available values.

Mode is a Mini Program native property, refer to WeChat Mini Program image official documentation.

html
<wd-img :width="100" :height="100" mode="center" :src="joy" />

Round Setting

You can set to display as a circle through the round property.

html
<wd-img :width="100" :height="100" round :src="joy" />

Preview Enabled

By setting the enable-preview property, you can support click preview. It uses uni.previewImage under the hood to implement the preview effect

html
<wd-img :width="100" :height="100" :src="joy" :enable-preview="true" />

You can also pass in the preview-src property to preview another image

html
<wd-img :width="100" :height="100" :src="joy" :preview-src="img" :enable-preview="true" />

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
srcImage URLstring---
widthWidth, default unit is pxnumber / string---
heightHeight, default unit is pxnumber / string---
modeFill modeImageMode'top left' / 'top right' / 'bottom left' / 'bottom right' / 'right' / 'left' / 'center' / 'bottom' / 'top' / 'heightFix' / 'widthFix' / 'aspectFill' / 'aspectFit' / 'scaleToFill''scaleToFill'-
roundWhether to display as circleboolean-false-
radiusBorder radius size, default unit is pxnumber / string---
enable-previewWhether to support click previewboolean-false1.2.11
show-menu-by-longpressEnable long press image to show Mini Program code recognition menu, only supported in WeChat Mini Programboolean-false1.3.11
preview-srcPreview image URLstring--1.8.0

Events

Event NameDescriptionParametersVersion
clickClick event(event: MouseEvent) => void-
loadTriggered when image is loaded{height, width}-
errorTriggered when error occurs{errMsg}-

Slots

NameDescriptionVersion
loadingDisplay during image loading1.2.21
errorDisplay after image loading failure1.2.21

External Classes

Class NameDescriptionVersion
custom-classRoot node style-
custom-imageImage external custom style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.