for my template I use a v-select and a v-text field for when a certain selected value causes the v-textfield to disappear, but how is this implemented in vuetify?
<template>
<v-container>
<v-row>
<v-col cols="12" sm="3" md="3">
<v-select
:items="['A','B']"
label="select"
></v-select>
</v-col>
<v-col cols="12" sm="3" md="3">
<v-text-field
label="Show"
></v-text-field>
</v-col>
</v-row>
</v-container>
</template>