Package Exports
- @gaopeng123/vue-image-upload
- @gaopeng123/vue-image-upload/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gaopeng123/vue-image-upload) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-image-upload
图片上传 支持粘贴上传

Usage
<script lang="ts">
import Vue from 'vue';
import VueImageUpload from '@gaopeng123/vue-image-upload';
/*
type FileItem = {
name: string,
url: string,
}
// 可配置参数
type VueImageUploadProps = {
id: string;
width?: string | number;
height?: string | number;
pictureWidth?: string | number; // 图片宽高
pictureHeight?: string | number;
action?: string; // 上传的路径
listType?: 'picture-card' | 'picture';
multiple?: boolean; // 是否支持多选
accept?: string; // 支持类型 默认.png,.jpg,.jpeg
maxCount?: number; // 最大上传个数
fileList?: FileItem[]; // 上传列表
onUploadChange?: (e: UploadEvent) => void; // 上传事件
onAfterUpload?: (e: UploadEvent) => void; // 上传后事件
onAfterDelete?: (e: UploadEvent) => void; // 删除后事件
};*/
export default Vue.extend({
name: 'ServeDev',
components: {
VueImageUpload
},
methods: {
onUploadChange(e: any) {
console.log(e);
}
}
});
</script>
<template>
<div id="app">
<vue-image-upload @onUploadChange="onUploadChange"/>
</div>
</template>