Skip to content

Commit

Permalink
fix(no-deprecated-components): add div replacement for v-list-item-co…
Browse files Browse the repository at this point in the history
…ntent
  • Loading branch information
johnleider committed Feb 19, 2024
1 parent e939def commit 5fae9d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rules/no-deprecated-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const replacements = {
VListTileAction: 'v-list-item-action',
VListTileAvatar: false,
VListTileActionText: 'v-list-item-action-text',
VListTileContent: false,
VListTileContent: 'div',
VListTileTitle: 'v-list-item-title',
VListTileSubTitle: 'v-list-item-subtitle',
VJumbotron: false,
Expand All @@ -25,7 +25,7 @@ const replacements = {
VData: false,
VListItemGroup: false,
VListItemAvatar: { custom: '`v-list-item` with `avatar` props, or `v-avatar` in the list item append or prepend slot' },
VListItemContent: false,
VListItemContent: 'div',
VListItemIcon: { custom: '`v-list-item` with `icon` props, or `v-icon` in the list item append or prepend slot' },
VOverflowBtn: false,
VPicker: false,
Expand Down

0 comments on commit 5fae9d1

Please sign in to comment.