-
Hi! I'm trying to find Vuetify types while building my application with TypeScript, I'm using Vue 2. How can I find them so I can import into my code? Some examples: VCombobox - Where can I find the interface of the VCombobox
VDataTable - Where can I find the interface of the first and second param when
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can't, it's
The first is |
Beta Was this translation helpful? Give feedback.
You can't, it's
any[]
because it accepts pretty much anything. That type should be based on the type of items you're passing in.The first is
MouseEvent
, the second isDataTableItemProps
fromvuetify/types