Skip to content

Commit

Permalink
feat(VList): add expand / collapse icon support
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Jan 2, 2024
1 parent 3572074 commit 8414baf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/vuetify/src/components/VList/VList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ export const makeVListProps = propsFactory({
activeClass: String,
bgColor: String,
disabled: Boolean,
expandIcon: String,
collapseIcon: String,
lines: {
type: [Boolean, String] as PropType<'one' | 'two' | 'three' | false>,
default: 'one',
Expand Down Expand Up @@ -166,6 +168,8 @@ export const VList = genericComponent<new <
activeColor,
baseColor,
color,
expandIcon: toRef(props, 'expandIcon'),
collapseIcon: toRef(props, 'collapseIcon'),
},
VListItem: {
activeClass: toRef(props, 'activeClass'),
Expand Down

0 comments on commit 8414baf

Please sign in to comment.