-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Closed
Labels
🐞 bugSomething isn't workingSomething isn't working
Description
Version
3.0.0-rc.7
Reproduction link
https://codesandbox.io/s/suspense-vue3-4vgle
Steps to reproduce
- Select a country from the dropdown list
- No data for the selected country is shown
- Select another country
- The data for the first country selected is now shown
What is expected?
The first time the country is selected to show data for that country right away
What is actually happening?
- The first time I select a country, the
selectedCountry
ref variable is showing as an object with the propertyvalue
set to the country selected. - When the code tries to access
selectedCountry.value
it returns null. Although when I debug in the DevTools, theselectedCountry
is a valid object with the value property set to the country selected.
I expect the v-model
on the select
to automatically bind to the selectedCountry
the first time I select a value.
Metadata
Metadata
Assignees
Labels
🐞 bugSomething isn't workingSomething isn't working