I have added vuetify to my project. The components like v-file-input or v-text-field works just fine. However, v-select doesn't show up. Instead, there is in the DOM.
Before adding vuetify I tried Vue-select, but I didn't like it and uninstall that package completely. Vue-select uses the same component name as v-select, not sure could that cause conflicts or not.
`<v-select :items="items" dark outlined></v-select>`
` export default { name: 'NewIncident', data () { return { items: ['Foo', 'Bar', 'Fizz', 'Buzz'] } } }`
I googled for examples v-select usage and found this codepen.io /DeFrank/pen/BdJyXX
Similarly, it shows up instead of outputting the desired result