[Vuejs]-Vue 2 Unknown custom element on vue libraries

0👍

Change the order of code. You are creating a new Vue instance which does not have the component vue-progress-bar:

Vue.use(Notifications);
Vue.use(firestorePlugin);
Vue.use(VueProgressBar, {
  color: "rgb(143, 255, 199)",
  failedColor: "red",
  height: "2px"
});
Vue.use(VueFusionCharts, FusionCharts, Column2D, FusionTheme);

new Vue({
  router,
  render: h => h(App),
}).$mount("#app");

Leave a comment