admin管理员组文章数量:1350375
I've installed this with npm :
Doing npm install hchs-vue-charts
Which is a package to make charts in my views.
I just want to know how to import this lib from node_modules
in a single ponent in Vuejs with the Vue-cli app () because in their examples they do it with an instance of Vue.
Thank you
I've installed this with npm : https://github./hchstera/vue-charts
Doing npm install hchs-vue-charts
Which is a package to make charts in my views.
I just want to know how to import this lib from node_modules
in a single ponent in Vuejs with the Vue-cli app (https://github./vuejs/vue-cli) because in their examples they do it with an instance of Vue.
Thank you
Share Improve this question asked Nov 23, 2017 at 9:44 MounirOnGithubMounirOnGithub 6993 gold badges10 silver badges23 bronze badges2 Answers
Reset to default 5you must install module in main.js
import Vue from 'vue'
import VueCharts from 'hchs-vue-charts'
Vue.use(VueCharts)
then use ponent everywhere in you app, like this:
<template>
<div id="app">
<chartjs-line></chartjs-line>
</div>
</template>
other ponents in lib:
<chartjs-bar/>
<chartjs-horizontal-bar/>
<chartjs-radar/>
<chartjs-polar-area/>
<chartjs-pie/>
<chartjs-doughnut/>
In main.js
import vue-charts and init the plugin like this:
import VueCharts from 'hchs-vue-charts'
Vue.use(VueCharts)
本文标签: javascriptImport js file from nodemodules in vuecli appStack Overflow
版权声明:本文标题:javascript - Import js file from node_modules in vue-cli app - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698335a2523884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论