Skip to content

Commit

Permalink
docs(upgrade-guide): add menu eager note
Browse files Browse the repository at this point in the history
closes #20630
  • Loading branch information
KaelWD committed Oct 29, 2024
1 parent a5e2c7c commit 64a52d4
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions packages/docs/src/pages/en/getting-started/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,14 @@ app.use(vuetify)
- `v-subheader` has been renamed to `v-list-subheader`.
- `v-list-item`'s `active` scoped slot prop has been renamed to `isActive`

### v-menu/v-tooltip

- `rounded` prop has been removed. Apply a rounded css class to the menu content element instead. e.g. `.rounded-te`
- `internal-activator` prop has been removed, use `activator` with a ref or unique selector instead.
- `absolute`, `offset-y` and `offset-x` props have been removed. Manual positioning is now done by passing a `[x, y]` array to the `target` prop.
- `nudge-*` props have been removed. There is no direct replacement but `offset` can be used to achieve similar results.
- Content is now destroyed after closing, use `eager` to keep it.

### v-navigation-drawer

- `stateless` prop has been removed, manually control state using `model-value` or `v-model` instead.
Expand Down Expand Up @@ -270,13 +278,6 @@ app.use(vuetify)

- `contain` has been removed and is now the default behaviour. Use `cover` to fill the entire container.

### v-menu

- `rounded` prop has been removed. Apply a rounded css class to the menu content element instead. e.g. `.rounded-te`
- `internal-activator` prop has been removed, use a ref or unique selector instead.
- `absolute`, `offset-y` and `offset-x` props have been removed. Manual positioning is now done by passing a `[x, y]` array to the `target` prop.
- `nudge-*` props have been removed. There is no direct replacement but `offset` can be used to achieve similar results.

### v-snackbar

- `action` slot was renamed to `actions`
Expand Down

0 comments on commit 64a52d4

Please sign in to comment.