FilePicker
This component allows you to create a file picker input component.
It depends on ValidationObserver, extend, required, ext and size from Vee Validate.
Example

<file-picker
:supported-extensions="['.docx', '.text']"
:max-size="10"
/>
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| vid | Allows you to indicate the vid for the ValidationProvider | String | false | undefined |
| horizontal | Allows you to indicate if the component will be horizontal or not | Boolean | false | true |
| labelInside | Allows you to indicate if the label will be inside of the input | Boolean | false | false |
| labelOnBorder | Allows you to indicate if the label will be on the border of the input | Boolean | false | false |
| validationMode | Validation mode for ValidationProvider | String | false | "aggressive" |
| supportedExtensions | Allows you to indicate the supported file extensions | Array | false | |
| maxSize | Allows you to indicate the max size for the files you will select | Number | false | undefined |
| isRequired | Allows you to indicate if the input is required | Boolean | false | true |
Events
| Event Name | Description | Parameters |
|---|---|---|
| input | - | - |