[Vuejs]-How can I manually import Vuetify 3 components with subcomponents?

0👍

We can just use the unfinished components in an alpha state. Labs
components

import { createVuetify } from 'vuetify'
import { VDataTable } from 'vuetify/labs/VDataTable'

export default createVuetify({
  components: {
    VDataTable,
  },
})

They said that

"Components available through Labs are considered NOT production ready and only to be used for testing purposes. Breaking changes will be introduced in patch releases and no support will be provided"

Leave a comment