vue-funnel-graph-js
vue-funnel-graph-js copied to clipboard
How to use this in nuxt?
I have created a plugin vue-funnel-graph:
import Vue from 'vue'; import { VueFunnelGraph } from 'vue-funnel-graph-js'; Vue.use(VueFunnelGraph);
Then added into plugins array:
{ src: '~/plugins/vue-funnel-graph.js', ssr: false }
In console, it says:
[Vue warn]: Unknown custom element: <vue-funnel-graph> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
I have created a plugin vue-funnel-graph:
import Vue from 'vue'; import { VueFunnelGraph } from 'vue-funnel-graph-js'; Vue.use(VueFunnelGraph);
Then added into plugins array:
{ src: '~/plugins/vue-funnel-graph.js', ssr: false }
In console, it says:
[Vue warn]: Unknown custom element: <vue-funnel-graph> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Import as Vue.component('vue-funnel-graph', VueFunnelGraph)