UNPKG

233 BJavaScriptView Raw
1import Chart from "./chart.vue";
2
3const VueChartsCSS = {
4 install(Vue, options)
5 {
6 options = Object.assign({}, {
7
8 }, options);
9
10 Vue.component("charts-css", Chart);
11 }
12};
13
14export default VueChartsCSS;