Skip to content

Commit 5fae9d1

Browse files
committed
fix(no-deprecated-components): add div replacement for v-list-item-content
1 parent e939def commit 5fae9d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rules/no-deprecated-components.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const replacements = {
77
VListTileAction: 'v-list-item-action',
88
VListTileAvatar: false,
99
VListTileActionText: 'v-list-item-action-text',
10-
VListTileContent: false,
10+
VListTileContent: 'div',
1111
VListTileTitle: 'v-list-item-title',
1212
VListTileSubTitle: 'v-list-item-subtitle',
1313
VJumbotron: false,
@@ -25,7 +25,7 @@ const replacements = {
2525
VData: false,
2626
VListItemGroup: false,
2727
VListItemAvatar: { custom: '`v-list-item` with `avatar` props, or `v-avatar` in the list item append or prepend slot' },
28-
VListItemContent: false,
28+
VListItemContent: 'div',
2929
VListItemIcon: { custom: '`v-list-item` with `icon` props, or `v-icon` in the list item append or prepend slot' },
3030
VOverflowBtn: false,
3131
VPicker: false,

0 commit comments

Comments
 (0)