[Vuejs]-Unable to send list of item from VueJS form

0👍

fixed with below code

      var cityArray =  (this.$refs.cities_input.value).split(',')
      for (var i = 0; i < cityArray.length; i++) {
            formData.append('cities', cityArray [i]);
      }

Leave a comment