I'm trying to use the v-form and v-text-field components from the Vuetify node package.
<template>
<v-form>
<v-text-field label="Test" type="foo"></v-text-field>
<v-text-field label="bar" type="text"></v-text-field>
</v-form>
</template>
When I do, and even when that's the only components inside a template, I have those warnings and the components are not displayed, but still show up in the inspector.
Other components like v-container, v-row/v-col or v-btn work fine, and it's occurring on both Firefox and Chrome. I'm currently using vuetify 3.0.0.alpha.2
Thanks for reading through !