chart components built with Vue.js
npm install vue-chart-engineThis repository contains a set of native Vue.js components based on chart engine(AnyChart,HighChart,EChart etc). As a result no dependency on jQuery is required. The only required dependencies are:
* Vue.js.
``bash`
$ npm install vue-chart-engine
js
var engine = require('vue-chart-engine').engine;new Vue({
components: {
'engine': engine
}
})
`$3
`js
import engine from 'vue-chart-engine/src/Home'
// or
import { engine } from 'vue-chart-engine'new Vue({
components: {
engine
}
})
`$3
`jsdefine(['vue-chart-engine'], function(VueStrap) { var engine = VueChartEngine.engine; ... });
`$3
The dist folder contains vue-chart-engine.js and vue-chart-engine.min.js with all components exported in the window.VueChartEngine object. These bundles are also available in,
and on both the Bower and NPM packages.`html
`Local Setup
* Install with npm install
* Run the docs site in development mode with npm run docs. This will watch for file changes as you work.
* Build with npm run build`.