mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Uploader): fix isOverSize param (#10824)
This commit is contained in:
parent
60b8906acd
commit
0931672595
@ -127,7 +127,7 @@ import { Toast } from 'vant';
|
||||
|
||||
export default {
|
||||
methods: {
|
||||
isOverSize() {
|
||||
isOverSize(file) {
|
||||
const maxSize = file.type === 'image/jpeg' ? 500 * 1024 : 1000 * 1024;
|
||||
return file.size >= maxSize;
|
||||
},
|
||||
|
@ -147,7 +147,7 @@ import { Toast } from 'vant';
|
||||
|
||||
export default {
|
||||
methods: {
|
||||
isOverSize() {
|
||||
isOverSize(file) {
|
||||
const maxSize = file.type === 'image/jpeg' ? 500 * 1024 : 1000 * 1024;
|
||||
return file.size >= maxSize;
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user