This is my Home page
<template>
<v-form>
<v-select outlined label="Choose s segment from AI/ML model" :items="item">
</v-select>
<v-text-field label="User ID" required></v-text-field>
</v-form>
</template>
<script>
export default {
data: function() {
return {
item: ['asv','abc','bcd'],
};
},
}
</script>
But I running the project select field is not visible. Why is that? how I do to visible this? (not shows any errors on the console log)