I noticed an unexpected issue with the v-file-input component in Vuetify3. In Vuetify 2, it was possible to use the selection slot to customize the display of selected files. This functionality still works in both versions, as mentioned in the documentation for V3 and V2.
However, when attempting to create a basic closable chip, I found that the hover or click events were not triggering at all. This issue is similar to the one described in a previous post related to Vuetify 2, which can be found here.
It appears that the input element always takes priority over the chips, which are now located within a separate element from the input itself. As a result, user interactions with the chips, such as deleting one of multiple imported files or basic hover events, are no longer functioning properly.
Are there any workarounds for this issue other than reverting back to Vuetify 2? You can test the playground where I'm investigating this further here.