更新记录
1.0.1(2019-10-24) 下载此版本
自动将image缓存到 '_doc/uniapp_save/images/' (默认,可更改) 目录下,下一次使用时会先查找缓存是否存在,存在则自动使用缓存,否则重复上述过程
1.0.0(2019-10-19) 下载此版本
优化其他人开发的组件: 原组件地址:https://ext.dcloud.net.cn/plugin?id=353
平台兼容性
[TOC]
因为原组件发布与2019年4月份,一直没有更新,所以自己更新后发布一个优化版,方便大家使用。 原作者:ImageCache
目录结构
使用方法
组件使用
index.vue
<template>
<view class="e-page">
<ImageCache class="logo" loadingImage="static/img/default_course.jpg" errorImage="static/img/default_course.jpg" src="/static/logo.png"></ImageCache>
</view>
</template>
<script>
import ImageCache from '@/components/ImageCache/ImageCache';
export default {
components: {
ImageCache
},
data() {
return {
title: 'ImageCache'
};
},
onLoad() {},
methods: {}
};
</script>