[Vuejs]-Vuetify 3 with vue 3, what am I doing wrong?

1👍

VDataTable for Vuetify 3 is still in development, you have to add the current experimental version (Vuetify calls it "labs") manually by registering it in createVuetify():

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

const vuetify = createVuetify({
    components: {
        VDataTable,
    },
})

Check the documentation for labs

Leave a comment