1.3.5 • Published 3 months ago

@gaopeng123/vue-image-upload v1.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

vue-image-upload

图片上传 支持粘贴上传

image-20220206113048610

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>
1.3.5

3 months ago

1.3.2

5 months ago

1.3.0

5 months ago

1.2.18-alpha.0

8 months ago

1.2.13

9 months ago

1.2.10

9 months ago

1.2.11

9 months ago

1.2.16

8 months ago

1.2.17

8 months ago

1.2.15

9 months ago

1.0.2

1 year ago

0.9.6

1 year ago

1.0.2-alpha.10

1 year ago

0.8.1

1 year ago

0.6.2

1 year ago

0.5.0

2 years ago

0.7.0

1 year ago

0.5.1

2 years ago

0.4.10

2 years ago

0.4.9

2 years ago

0.4.8

2 years ago

0.4.11

2 years ago

0.4.6

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.18

2 years ago

0.2.10

2 years ago

0.2.9

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago