img-cache-v3
v1.0.0
Published
A Vue3 image component with automatic local caching
Downloads
3
Readme
ImgCacheV3
安装
npm i img-cache-v3
main.js中引入
import ImgCache from 'img-cache-v3'
const app = createApp(App)
app.use(ImgCache)
app.mount('#app')
Vue组件中使用
<script setup>
</script>
<template>
<ImgCache src="/vite.svg"/>
</template>
<style scoped>
</style>
参数列表
| 属性名 | 说明 | 类型 | |:---------: | :---------:| :---------: | | src | 图片源地址,同原生属性一致 | String | | fit | 确定图片如何适应容器框,同原生 object-fit |String| | alt | 原生属性 alt |String| | style | 样式 |Object|