1.3.0 • Published 5 years ago

vue-upload_zc v1.3.0

Weekly downloads
15
License
-
Repository
github
Last release
5 years ago

vue-upload

A Vue.js project

Build Setup

# install dependencies
npm install vue-upload_zc --save

使用组件必须传递的参数options
options:{
  showProgress: true,  //是否显示进度
  imagePreview: true,  //是否显示图片预览
  url: "str",    //上传接口url
  fileUploadName: "ajax-upload", //后台采用的是什么名字就传递什么名字
  limitSize: 1  //限制文件上传的大小
}

# dom组件使用
<hupload :options=options v-on:receiveUploadMsg="receiveUploadMsg"> </hupload>

# JS接受的信息判断
methods: {
  receiveUploadMsg(msg) {
    console.log(msg);
  }
}
1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago