0๐
:serializer="input => input" means that you api return some array of objects right? and then you just show the element as to like toString(), this way your api should return an array of string.
If the api return for example: [{Id:1, Desc: "One"}, {Id:2, Desc:"Two"}] you should put there :serializer="input => input.Desc"
- [Vuejs]-Vue JS : Can not update dom from created function
- [Vuejs]-How can i display translation in data?
Source:stackexchange.com