I am using Formulate function of VueJs in my project, FormulateInput type file is working, but know I have to put validation for the file type check but I am unable to check for mime:application for document and excel files. Validation for only pdf and image is working...
Any guidance on setting up validation using formulated forms in VueJs would be helpful.
<FormulateInput
type="file"
input-class="formulate-form-control"
name="filename"
id="fileid"
validation-name="filecheck"
accept=".pdf,.doc,.docx"
validation = "mime:application/pdf"
/>