lijh
2022-01-12 bf6fbec0b5593eb28dc195a58a4208d29b79dfee
commit | author | age
bf6fbe 1 export const ACCEPT_CONFIG = {
L 2     image: ['.png', '.jpg', '.jpeg', '.gif', '.bmp'],
3     video: ['.mp4', '.rmvb', '.mkv', '.wmv', '.flv'],
4     document: ['.doc', '.docx', '.xls', '.xlsx', '.ppt', '.pptx', '.pdf', '.txt', '.tif', '.tiff'],
5     getAll(){
6         return [...this.image, ...this.video, ...this.document]
7     },
8 };