1.0.7 • Published 6 months ago

@tcly-pangu/uploader v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

使用方式

npm install @tcly-pangu/uploader -S
<uploader
  :initList="fileList"
  :size="5"
  accept=".bmp,.gif,.jpeg,.jpg,.png"
  listType="picture-card"
  tip="文件大小不超过 5M,支持 bmp、gif、jpeg、jpg、png 格式文件"
  @change="onChangeUploadImage"
></uploader>
data () {
  return {
    fileList: [{
      uid: '1',
      name: 'test.png',
      status: 'done',
      url: 'https://test.png'
    }], // 文件列表
    form: {
      imageUrl: '' // 图片地址
    }
  }
},
methods: {
  /**
   * 监听改变上传图片
   * @param {Array} fileList - 文件列表
   */
  onChangeUploadImage (fileList) {
    this.form.imageUrl = fileList.length ? fileList[0].url : ''
  }
}
1.0.7

6 months ago

1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.3

8 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago