Skip to content

StatusTip

Generally used for fallback placeholder display.

Note

The images used in this component are external links and stability is not guaranteed. It is recommended to download the images to the developer's server and use them through custom image URL or custom url-prefix. Custom image address prefix url-prefix is supported starting from version 1.3.11.

Download links:

  1. Github repository: https://github.com/Moonofweisheng/wot-design-uni-assets
  2. npm address:

Basic Usage

Set image to modify the display placeholder image type, default is network. Available values are search, network, content, collect, comment, halo, message. You can set tip to control the display prompt text.

html
<wd-status-tip image="search" tip="No search results" />
<wd-status-tip image="network" tip="This page is currently inaccessible" />
<wd-status-tip image="content" tip="No content" />
<wd-status-tip image="collect" tip="No collections" />
<wd-status-tip image="comment" tip="No contact list currently~" />
<wd-status-tip image="halo" tip="Payment failed, please reorder" />
<wd-status-tip image="message" tip="Subscribed to all messages" />

Custom Size

Customize the image size through the image-size property.

html
<wd-status-tip
  :image-size="{
          height: 200,
          width: 300
  }"
  image="search"
  tip="No search results"
/>

Custom Image

When you need to customize the image, you can pass any image URL in the image property.

html
<wd-status-tip image="https://registry.npmmirror.com/wot-design-uni-assets/*/files/panda.jpg" tip="View my avatar" />

Custom Image Content

Use the image slot to customize image content.

html
<wd-status-tip tip="Custom image content">
  <template #image>
    <wd-icon name="ie-filled" size="100px"></wd-icon>
  </template>
</wd-status-tip>

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
imageDefault image type, supports image URL inputstringsearch / network / content / collect / comment / halo / messagenetwork-
image-sizeImage size, default unit is pxstring/number/ImageSize---
tipPrompt textstring---
image-modeMode property for preview imageImageMode-aspectFit1.2.12
url-prefixImage path prefix, points to the directory where images are located, used for concatenating image URLsstring-https://registry.npmmirror.com/wot-design-uni-assets/*/files/1.3.11

ImageSize

ParameterDescriptionTypeOptionsDefaultVersion
heightImage height, default unit is pxstring / number--1.2.12
widthImage width, default unit is pxstring / number--1.2.12

Slot

NameDescriptionVersion
imageImage content1.3.12

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.