You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I tried to prevent the duplicate tags when using separator 'comma', but when I input tags with continuous comma, this component will add tags with 'comma' like this:
I added a validate function (e.g. return true when arr.indexOf(newTag) === -1), and a normalize function (e.g. return newTag.replace(',', '').trim()), but they all did not work.
The text was updated successfully, but these errors were encountered:
Version of
Vue
I'm using?: 2.5.17Version of
vue-input-tag
I'm using?: 2.0.6Hello, I tried to prevent the duplicate tags when using separator 'comma', but when I input tags with continuous comma, this component will add tags with 'comma' like this:
I added a validate function (e.g. return
true
whenarr.indexOf(newTag) === -1
), and a normalize function (e.g. returnnewTag.replace(',', '').trim()
), but they all did not work.The text was updated successfully, but these errors were encountered: