vant/src/uploader

Uploader

Install

import Vue from 'vue';
import { Uploader } from 'vant';

Vue.use(Uploader);

Usage

Basic Usage

<van-uploader :after-read="afterRead" />
export default {
  methods: {
    afterRead(file) {
      console.log(file);
    },
  },
};

Preview File

<van-uploader v-model="fileList" multiple />
export default {
  data() {
    return {
      fileList: [{ url: 'https://img01.yzcdn.cn/vant/leaf.jpg' }],
    };
  },
};

Upload Status

<van-uploader v-model="fileList" :after-read="afterRead" />
export default {
  data() {
    return {
      fileList: [
        {
          url: 'https://img01.yzcdn.cn/vant/leaf.jpg',
          status: 'uploading',
          message: 'Uploading...',
        },
        {
          url: 'https://img01.yzcdn.cn/vant/tree.jpg',
          status: 'failed',
          message: 'Failed',
        },
      ],
    };
  },
  methods: {
    afterRead(file) {
      file.status = 'uploading';
      file.message = 'Uploading...';

      setTimeout(() => {
        file.status = 'failed';
        file.message = 'Failed';
      }, 1000);
    },
  },
};

Max Count

<van-uploader v-model="fileList" multiple :max-count="2" />
export default {
  data() {
    return {
      fileList: [],
    };
  },
};

Max Size

<van-uploader multiple :max-size="500 * 1024" @oversize="onOversize" />
import { Toast } from 'vant';

export default {
  methods: {
    onOversize(file) {
      console.log(file);
      Toast('File size cannot exceed 500kb');
    },
  },
};

If you need to make different size limits for different types of files, you can pass a function to the max-size props.

<van-uploader multiple :max-size="isOverSize" />
import { Toast } from 'vant';

export default {
  methods: {
    isOverSize(file) {
      const maxSize = file.type === 'image/jpeg' ? 500 * 1024 : 1000 * 1024;
      return file.size >= maxSize;
    },
  },
};

Custom Upload Area

<van-uploader>
  <van-button icon="plus" type="primary">Upload Image</van-button>
</van-uploader>

Preview Cover

<van-uploader v-model="fileList">
  <template #preview-cover="{ file }">
    <div class="preview-cover van-ellipsis">{{ file.name }}</div>
  </template>
</van-uploader>

<style>
  .preview-cover {
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 4px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
  }
</style>

Before Read

<van-uploader :before-read="beforeRead" />
import { Toast } from 'vant';

export default {
  methods: {
    beforeRead(file) {
      if (file.type !== 'image/jpeg') {
        Toast('Please upload an image in jpg format');
        return false;
      }
      return true;
    },
    asyncBeforeRead(file) {
      return new Promise((resolve, reject) => {
        if (file.type !== 'image/jpeg') {
          Toast('Please upload an image in jpg format');
          reject();
        } else {
          let img = new File(['foo'], 'bar.jpg', {
            type: 'image/jpeg',
          });
          resolve(img);
        }
      });
    },
  },
};

Disable Uploader

Use disabled prop to disable uploader.

<van-uploader disabled />

Customize Single Preview Image Style

<van-uploader v-model="fileList" :deletable="false" />
import { Toast } from 'vant';

export default {
  data() {
    return {
      fileList = [
        { url: 'https://img01.yzcdn.cn/vant/leaf.jpg' },
        {
          url: 'https://img01.yzcdn.cn/vant/sand.jpg',
          deletable: true,
          beforeDelete: () => {
            Toast('Customize the events and styles of a single preview image');
          },
        },
        {
          url: 'https://img01.yzcdn.cn/vant/tree.jpg',
          deletable: true,
          imageFit: 'contain',
          previewSize: 120,
        },
      ];
    }
  }
};

API

Props

Attribute Description Type Default
v-model (fileList) List of uploaded files FileListItem[] -
accept Accepted file type string image/*
name Input name number | string -
preview-size Size of preview image number | string 80px
preview-image Whether to show image preview boolean true
preview-full-image Whether to show full screen image preview when image is clicked boolean true
preview-options v2.9.3 Options of full screen image previewsee ImagePreview object -
multiple Whether to enable multiple selection pictures boolean false
disabled Whether to disabled the upload boolean false
readonly v2.12.26 Whether to make upload area readonly boolean false
deletable Whether to show delete icon boolean true
show-upload v2.5.6 Whether to show upload area boolean true
lazy-load v2.6.2 Whether to enable lazy loadshould register Lazyload component boolean false
capture Capturecan be set to camera string -
after-read Hook after reading the file Function -
before-read Hook before reading the file, return false to stop reading the file, can return Promise Function -
before-delete Hook before delete the file, return false to stop reading the file, can return Promise Function -
max-size v2.12.20 Max size of file number | string | (file: File) => boolean -
max-count Max count of image number | string -
result-type Type of file read result, can be set to file text string dataUrl
upload-text Upload text string -
image-fit Preview image fit mode string cover
upload-icon v2.5.4 Upload icon string photograph

Tips: accept, capture and multiple are the attributes of the native input tag, there may be some compatibility issues under different systems and WebView.

Events

Event Description Arguments
oversize Emitted when file size over limit Same as after-read
click-upload v2.12.26 Emitted when click upload area event: MouseEvent
click-preview Emitted when preview image is clicked Same as after-read
close-preview Emitted when the full screen image preview is closed -
delete Emitted when preview file is deleted Same as after-read

Slots

Name Description SlotProps
default Custom icon -
preview-cover v2.9.1 Custom content that covers the image preview item: FileListItem

Parameters of before-read、after-read、before-delete

Attribute Description Type
file File object object
detail Detail info, contains name and index object

ResultType

Value Description
file Result contains File object
text Result contains File object and text content
dataUrl Result contains File object and base64 content

Methods

Use ref to get Uploader instance and call instance methods.

Name Description Attribute Return value
closeImagePreview Close full screen image preview - -
chooseFile v2.5.6 Trigger choosing files, works with the user action context only because of browser security - -

Less Variables

How to use: Custom Theme.

Name Default Value Description
@uploader-size 80px -
@uploader-icon-size 24px -
@uploader-icon-color @gray-4 -
@uploader-text-color @gray-6 -
@uploader-text-font-size @font-size-sm -
@uploader-upload-background-color @gray-1 -
@uploader-upload-active-color @active-color -
@uploader-delete-color @white -
@uploader-delete-icon-size 14px -
@uploader-delete-background-color rgba(0, 0, 0, 0.7) -
@uploader-file-background-color @background-color -
@uploader-file-icon-size 20px -
@uploader-file-icon-color @gray-7 -
@uploader-file-name-padding 0 @padding-base -
@uploader-file-name-margin-top @padding-xs -
@uploader-file-name-font-size @font-size-sm -
@uploader-file-name-text-color @gray-7 -
@uploader-mask-background-color fade(@gray-8, 88%) -
@uploader-mask-icon-size 22px -
@uploader-mask-message-font-size @font-size-sm -
@uploader-mask-message-line-height @line-height-xs -
@uploader-loading-icon-size 22px -
@uploader-loading-icon-color @white -
@uploader-disabled-opacity @disabled-opacity -