提交 4f5b117a 编写于 作者: D DCloud_LXH

fix(h5): 修复chooseImage和chooseVideo在extendsion为空数组时表现错误

上级 3abe5b43
......@@ -33,6 +33,9 @@ export const chooseImage = {
},
extension: {
type: Array,
default: ['*']
default: ['*'],
validator (extension, params) {
if (extension.length === 0) params.extension = ['*']
}
}
}
......@@ -20,6 +20,9 @@ export const chooseVideo = {
},
extension: {
type: Array,
default: ['*']
default: ['*'],
validator (extension, params) {
if (extension.length === 0) params.extension = ['*']
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册