sagalbot / vue-select

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.
https://vue-select.org
MIT License
4.62k stars 1.33k forks source link

The beginning of the value does not appear in the Select box. #1705

Closed ramazansancar closed 1 year ago

ramazansancar commented 1 year ago

Please respect maintainers time by filling in these sections. Your issue will likely be closed without this information.

Describe the bug While the values in Vue Select are disabled, sometimes the first few letters do not appear.

Reproduction Link I have no idea how it came about.

Steps To Reproduce I have no idea how it came about. (It will be enough to create a vue select as Disabled. (It is not the exact solution.))

Expected behavior Entire word or phrase visible

Screenshots Bug: image Resolved state: image

This is how I resolved this issue:

.vs--disabled input{
  display:none;
}

OR

.vs__search{
  position: unset !important;
}
vheins commented 1 year ago

try to use :modelValue instead :value its wrk for me

sagalbot commented 1 year ago

Closing this. Need a reproduction link. Too many possibilities for application code causing this.

ramazansancar commented 1 year ago

try to use :modelValue instead :value its wrk for me

That's how I use it. It's a problem sometimes. Very rare. It can be fixed when you refresh the page. I solved the problem with css.

image