1

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)

Kaumadie Kariyawasam
  • 1,232
  • 3
  • 17
  • 35

1 Answers1

0

The only error in the code is that you are missing an ' at item: ['asv','abc','bcd']. Otherwise, it looks fine

Leo Giesen
  • 126
  • 5