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
You're using a component, and you have 10,000 options in total. However, you're fetching the options with pageSize of 10 at a time. When you try to set the selected value using v-model="{ name: 'test', id: 5689 }", the ID 5689 won't be in the current batch of fetched options. Here's how you can handle this situation.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
You're using a component, and you have 10,000 options in total. However, you're fetching the options with pageSize of 10 at a time. When you try to set the selected value using v-model="{ name: 'test', id: 5689 }", the ID 5689 won't be in the current batch of fetched options. Here's how you can handle this situation.
Beta Was this translation helpful? Give feedback.
All reactions