Value is not sync to data
See original GitHub issueHello I am trying to use vue-select with vue 2.1.10. It doesnt sync value and also value prop inside component is null.
<v-select :options="['foo','bar','baz']" :value.sync="test_select"></v-select>
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Troubleshoot an object that is not syncing with Azure Active ...
If an object is not syncing as expected with Microsoft Azure Active Directory (Azure AD), it can be because of several reasons.
Read more >Field does not sync in Pardot - Salesforce Help
It is common to map the incorrect field between the CRM and Pardot. If values are not syncing across, you may want to...
Read more >Troubleshoot Data Sync - Appian 22.2
When data is entered into your source, it's possible to enter values that aren't compatible with data sync. This means that the value...
Read more >Has anyone had a problem with quicken not syncing your ...
I apologize you are having this issue. I would recommend resetting your cloud data set, then attempting to resync. Before starting this process...
Read more >visual value is not syncing with other visuals
in my report page, one of the visual's value is not syncing when selecting another visual. however, remaing visuals are syncing at the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
.sync
is removed invue 2
. Props in components are now one-way, and immutable after instantiation. You need to use thev-model
syntax instead:Could you update the documentation under https://sagalbot.github.io/vue-select/#install regarding “.sync”? Or maybe add a note for vue2.
Thanks!