A Vue 2 integration using Frappe Charts
This is a simple package to get using Frappe Charts within VueJS
First we need to import and initialize
import Vue from 'vue' import Chart from 'vue2-frappe'Vue.use(Chart)
or use the component directly
import { VueFrappe } from 'vue2-frappe'export default { components: { VueFrappe, }, };
Then in our Vue templates:
There are more examples in the
examplesdirectory