Chrome 56
"User 2" should be the only user showing
The select is showing "User 1, User 2, User 3"
Hi, @adam-hanna
User 1, User 2, User 3 is shown because it cached in multipleOptions variable.
So, do display properly just clear it, like this this.$refs.multiselect.multipleOptions = {}
There multiselect is _ref_ to mdSelect
link
That did it, thanks!
Still seems a bit hacky, though. I would have expected it to match exactly the v-model, no?
Still seems a bit hacky, though. I would have expected it to match exactly the v-model, no?
Yep, as i see, in setTextAndValue, which handle v-model changes, no proper handler for multiple values.
I think, there is should be a check that mdSelect handle multiple values. May be somethind linke this
if (this.multiple) {
this.multipleOptions = output.value
}
I fix it via PR #749 .
Soon you'll have the bug fix @adam-hanna !
Thank you guys for opening this issue. :D