Currently, I am using Swal Sweet Alert within my Vue.js application. I have successfully implemented code to allow image files, but now I am seeking assistance on how to extend this functionality to include multiple file types such as PDFs, PPTs, and Docs in addition to images. Below is the snippet of the existing code:
swal({
title: 'Select file',
input: 'file',
inputAttributes: {
'accept': 'image/*',
'aria-label': 'Upload the file'
}
})
Your inputs and guidance on this matter will be highly appreciated.