You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
565 B
30 lines
565 B
// props for choose image
|
|
export const chooseImageProps = {
|
|
sizeType: {
|
|
type: Array,
|
|
value: ['original', 'compressed']
|
|
},
|
|
capture: {
|
|
type: Array,
|
|
value: ['album', 'camera']
|
|
}
|
|
};
|
|
// props for choose video
|
|
export const chooseVideoProps = {
|
|
capture: {
|
|
type: Array,
|
|
value: ['album', 'camera']
|
|
},
|
|
compressed: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
maxDuration: {
|
|
type: Number,
|
|
value: 60
|
|
},
|
|
camera: {
|
|
type: String,
|
|
value: 'back'
|
|
}
|
|
};
|
|
|