Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwu9145 committed Jun 9, 2024
1 parent ca1e9d9 commit f1d1bd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vuetify/src/labs/VTreeview/VTreeview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { computed, provide, ref, toRef, watch } from 'vue'
import { genericComponent, getCurrentInstance, omit, propsFactory, useRender } from '@/util'

// Types
import type { ExtractPublicPropTypes } from 'vue'
import { VTreeviewSymbol } from './shared'
import type { VListChildrenSlots } from '@/components/VList/VListChildren'
import type { ListItem } from '@/composables/list-items'
Expand Down Expand Up @@ -147,7 +148,7 @@ export const VTreeview = genericComponent<new <T>(
})

useRender(() => {
const listProps = VList.filterProps(vm.vnode.props!)
const listProps = VList.filterProps(vm.vnode.props! as ExtractPublicPropTypes<typeof makeVTreeviewProps>)

const treeviewChildrenProps = VTreeviewChildren.filterProps(props)

Expand Down

0 comments on commit f1d1bd1

Please sign in to comment.