[Vuejs]-How to validate multiple file form field using vee-validate?

0👍

Name should be “images” instead of “images[]”. We just need to initiate images as empty array in the app

  data: function() {
    return {
      images: []
    }
  },

Leave a comment