image
图片。支持 JPG、PNG、SVG、WEBP、GIF 等格式。
也可以使用<img>
Props
参数 | 类型 | 默认值 | 必填 | 说明 | |||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
src | string | 是 | 图片地址 | ||||||||||||||||||||||||||||||||
lazy-load | boolean | false | 否 | 懒加载 | |||||||||||||||||||||||||||||||
mode | string | scaleToFill | 否 | 图片裁剪、缩放的模式 | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||
webp | boolean | false | 否 | 如果使用网络 webp 资源,则需要设置 true。本地 webp 资源不需要设置。 |
Example
vue
<template>
<image src="../assets/test.png"></image>
<image lazy-load src="https://example.com/test.png"></image>
<!-- or -->
<img src="https://example.com/test.png" />
</template>