vue-tags-input icon indicating copy to clipboard operation
vue-tags-input copied to clipboard

Change Key 'text' in submitted tags array

Open MaxJan2010 opened this issue 3 years ago • 0 comments

Hi, How can I changed

[
   {
      "text":"hello",
      "tiClasses":[
         "ti-valid"
      ]
   },
   {
      "text":"next",
      "tiClasses":[
         "ti-valid"
      ]
   }
]

To:

[
   {
      "name":"hello"
   },
   {
      "name":"next"
   }
]

I mean change key text to name & and remove tiClasses from submitted data (i am using axios)

MaxJan2010 avatar Mar 11 '22 10:03 MaxJan2010