Attempting to implement 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>
Encountering issues where even when these components are the only ones in a template, warnings appear (example here) and the components do not display properly, although they can still be seen in the inspector (view here).
Other Vuetify components like v-container, v-row/v-col, or v-btn are functioning correctly. This issue is present on both Firefox and Chrome browsers. Currently utilizing vuetify version 3.0.0.alpha.2
Thank you for taking the time to read through this!