Version of Vue I'm using?: 2.5.16
Version of vue-input-tag I'm using?: 2.0.1
So when I type "first", then a comma, then a space, then a "second", the values I have are ["first", " second"] instead of ["first", "second"] (note the space at the beginning of "second").
Can I trim it somehow by specifying an option when creating a component or something like that?
Version of
Vue
I'm using?: 2.5.16 Version ofvue-input-tag
I'm using?: 2.0.1So when I type "first", then a comma, then a space, then a "second", the values I have are
["first", " second"]
instead of["first", "second"]
(note the space at the beginning of "second").Can I trim it somehow by specifying an option when creating a component or something like that?
Thanks in advance!