[Vuejs]-Invalid prop: custom validator check failed for prop "value"

0๐Ÿ‘

<v-file-input v-model="img"/>

Should be the original value [] of your image data variable, like this:

export default {
    data() {
        return {
            img: []
        }
    },

Leave a comment