is this the right way to include a vue component?
new Vue({
render: (h) => h(App)
})
.component("v-select", vSelect)
.$mount("#app");
I tried to use vue-select but seeing a blank screen https://codesandbox.io/s/affectionate-goodall-judt9?file=/src/main.js:164-254