Javascript VueJS未知自定义元素:您是否正确注册了该组件

Javascript VueJS未知自定义元素:您是否正确注册了该组件,javascript,vue.js,vuejs2,Javascript,Vue.js,Vuejs2,我想在我的VueJS应用程序中使用此第三方组件,但出现了错误 Unknown custom element: <toast-container> - did you register the component correctly? For recursive components, make sure to provide the "name" option. App.vue 见以下签名: Vue.use只需要一个参数。如果你通过的次数超过这个数,它们将被忽略 你必须这样使用它:

我想在我的VueJS应用程序中使用此第三方组件,但出现了错误

Unknown custom element: <toast-container> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
App.vue

见以下签名:

Vue.use只需要一个参数。如果你通过的次数超过这个数,它们将被忽略

你必须这样使用它:

Vue.use(BootstrapVue);
Vue.use(Vuex);
Vue.use(VueOnToast);
见以下签名:

Vue.use只需要一个参数。如果你通过的次数超过这个数,它们将被忽略

你必须这样使用它:

Vue.use(BootstrapVue);
Vue.use(Vuex);
Vue.use(VueOnToast);
Vue.use( plugin )
Vue.use(BootstrapVue);
Vue.use(Vuex);
Vue.use(VueOnToast);