forked from buefy/buefy
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BMenuItem: default v-model binding does not work #19
Comments
buefy-next/src/components/menu/MenuItem.vue Lines 58 to 61 in f0348bf
To use default
See https://v3-migration.vuejs.org/breaking-changes/v-model.html |
wesdevpro
added a commit
that referenced
this issue
Jun 20, 2024
Fixes: #19 - Migrates MenuItem's `model` prop to `modelValue`. - Updates the `model` prop's name to `modelValue`. - Updates the `model` prop's event. - Updates what the MenuItem emits for the model prop (Source: https://v3-migration.vuejs.org/breaking-changes/v-model.html)
kikuomax
added a commit
that referenced
this issue
Jul 14, 2024
I rewrite the CHANGELOG according to my preference, however we should discuss and establish a minimum guideline for the CHANGELOG. Categorizes the issue #19 as a "Breaking changes". Removes "Fix" prefixes in the "Fixes" section because they look redundant. Writes the issues instead of the solutions in the headlines. Moves the issue #178 to a new category "Fixes (docs)" because it does not matter to the core buefy-next library. Adds the following fixes: - #23 - #257 - #171 (docs)
wesdevpro
pushed a commit
that referenced
this issue
Jul 15, 2024
I rewrite the CHANGELOG according to my preference, however we should discuss and establish a minimum guideline for the CHANGELOG. Categorizes the issue #19 as a "Breaking changes". Removes "Fix" prefixes in the "Fixes" section because they look redundant. Writes the issues instead of the solutions in the headlines. Moves the issue #178 to a new category "Fixes (docs)" because it does not matter to the core buefy-next library. Adds the following fixes: - #23 - #257 - #171 (docs)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Overview of the problem
Buefy version: buefy-next (67ecf3a)
Vuejs version: 3.3.4
OS/Browser: Safari
Description
The default
v-model
binding on<b-menu-item>
does not work.Steps to reproduce
Expected behavior
<b-menu-item>
syncsisActive
:<b-menu-item>
is activated according toisActive
.<b-menu-item>
updatesisActive
according to itsactive
state.Actual behavior
<b-menu-item>
does not syncisActive
.Btw, the explicit
v-model
binding does the expected behavior:The text was updated successfully, but these errors were encountered: