[Vuejs]-VSelect in Vuetify shows empty comment in DOM instead of rendering

1👍

Try adding line

vuetify: new Vuetify(),

to your JavaScript export default.

The example mentioned by you will work if you change JavaScript code to:

new Vue({
el: '#app',
vuetify: new Vuetify(),

Leave a comment