useImage
响应式加载浏览器中的图像,您可以等待结果以显示它,或显示一个备用图像。
Demo
Loading...
使用方法
vue
<script setup>
import { useImage } from '@vueuse/core'
const avatarUrl = 'https://place.dog/300/200'
const { isLoading } = useImage({ src: avatarUrl })
</script>
<template>
<span v-if="isLoading">加载中</span>
<img v-else :src="avatarUrl">
</template>
组件使用
vue
<template>
<UseImage src="https://place.dog/300/200">
<template #loading>
加载中..
</template>
<template #error>
加载失败
</template>
</UseImage>
</template>
类型声明
typescript
export interface UseImageOptions {
/** 资源的地址 */
src: string
/** 不同情况下使用的图片,例如高分辨率显示器、小型监视器等 */
srcset?: string
/** 不同页面布局的图片尺寸 */
sizes?: string
/** 图片的替代信息 */
alt?: string
/** 图片的类名 */
class?: string
/** 图片的加载方式 */
loading?: HTMLImageElement["loading"]
/** 图片的跨域设置 */
crossorigin?: string
/** 获取者策略用于获取资源 */
referrerPolicy?: HTMLImageElement["referrerPolicy"]
}
/**
* Reactive load an image in the browser, you can wait the result to display it or show a fallback.
*
* @see https://vueuse.org/useImage
* @param options Image attributes, as used in the <img> tag
* @param asyncStateOptions
*/
export declare function useImage<Shallow extends true>(
options: MaybeRefOrGetter<UseImageOptions>,
asyncStateOptions?: UseAsyncStateOptions<Shallow>,
): UseAsyncStateReturn<HTMLImageElement | undefined, [], true>
export type UseImageReturn = ReturnType<typeof useImage>
Source
贡献者
Anthony Fu
丶远方
Jelf
Anthony Fu
Riley Gelwicks
btea
François M
vaakian X
Lúcio Rubens