0.1.0 • Published 6 years ago

ajax-vue-upload v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

ajax-vue-upload

A Vue.js project

Build Setup

# install 
 npm install ajax-vue-upload --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) {
      // msg ....
    }
}