You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but dont show select input when run project and following error in console
[Vue warn]: Failed to resolve component: v-select If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. at <Create onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > > at <RouterView> at <Layout onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > > at <RouterView> at <App>
The text was updated successfully, but these errors were encountered:
I use the following code in vue 3 :
main.js
import vSelect from 'vue-select'
import "vue-select/dist/vue-select.css";
const myApp = createApp(App);
myApp.component('v-select', vSelect.VueSelect);
myApp.use(router).mount('#app');
components
<v-select class="form-control" :options="options"></v-select>
but dont show select input when run project and following error in console
[Vue warn]: Failed to resolve component: v-select
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at <Create onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <RouterView>
at <Layout onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <RouterView>
at <App>
The text was updated successfully, but these errors were encountered: