shu-c-vchart
v1.0.19
Published
vchart 可视化组件库
Downloads
29
Readme
shu-c-vchart
注意: 对应echarts
版本为 4.7.0,低版本 暂未进行适配。
安装和快速上手
npm 安装
安装依赖包
- shuCVChart
npm i shu-c-vchart --save
- echarts
npm i [email protected] --save
- lodash (帮助函数插件)
lodash
如果使用的是脚手架那么可能脚手架已经帮你安装了(比如:Vue CLI)。
npm i lodash --save
CDN
cdn 服务网络js文件暂未发布,如果需要使用请至目录:
node_modules
└──shu-c-vchart
dist
└──shu-c-vchart.global.min.js
将shu-c-vchart.global.min.js
拷贝到你项目中的 static 目录内,然后使用:
<script src="/static/shu-c-vchart.global.min.js"></script>
main.js (webpack中使用,echarts 请使用 script
引入)
import Vue from 'vue';
Vue.use(window.shuCVChart.install);
new Vue({
render: h => h(App)
}).$mount('#app')
快速上手
在 main.js 中写入以下内容:
import Vue from 'vue';
import shuCVChart from 'shu-c-vchart';
Vue.use(shuCVChart);
new Vue({
render: h => h(App)
}).$mount('#app')
Browsers support
Modern browsers and IE10.
| IE / Edge | Firefox | Chrome | Safari | Opera | | --- | --- | --- | --- | --- | | IE10, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
last 2 versions 每个浏览器最新的两个版本
Contributors
This project exists thanks to all the people who contribute.