1.0.1 • Published 4 years ago

vue-upload-picture v1.0.1

Weekly downloads
10
License
-
Repository
github
Last release
4 years ago

vue-upload-picture

A plug-in for uploading pictures based on Vue

Build Setup

install

npm install vue-upload-picture --save

or yarn add vue-upload-picture

使用组件必须传递的参数 options

参数字段类型默认值
是否显示进度条showProgressBooleanstrue
是否预览图片imagePreviewBooleanstrue
上传的接口链接urlstring
图片名称fileUploadNamestring
图片大小limitSizenumber
options:{
   showProgress: true,
   imagePreview: true,
   url: "str",
   fileUploadName: "ajax-upload",//后台采用什么名字就传递什么名字
   limitSize: 1//限制图片上传的大小
}
# 组件的使用方法
 <hupload :options="options" v-on:receiveUploadMsg="receiveUploadMsg"></hupload>


# js 接受的信息判断
methods:{
  receiveUploadMsg(msg){
    //msg....
  }
}