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
I have three <vue-select/> components on a page.
I am using the :from prop to supply a function that will load options based on the selected value from the first dropdown.
But the options shown in the second dropdown is not updating while changing the options in first dropdown.
It works perfectly fine for the first time. Once the options are loaded, it is not changing on the subsequent changes.
The text was updated successfully, but these errors were encountered:
@theashcodes this certainly is something I have to make a default behavior. Till then though you can easily achieve it through one of the following steps, knowing that the component internally uses the .search method to update its options:
Make it default behavior for your app during plugin setup:
I have three
<vue-select/>
components on a page.I am using the
:from
prop to supply a function that will load options based on the selected value from the first dropdown.But the options shown in the second dropdown is not updating while changing the options in first dropdown.
It works perfectly fine for the first time. Once the options are loaded, it is not changing on the subsequent changes.
The text was updated successfully, but these errors were encountered: