mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-08-15 20:26:52 +08:00
19 lines
351 B
JavaScript
19 lines
351 B
JavaScript
import Vue from 'vue'
|
|
import ECharts from '../src/components/ECharts.vue'
|
|
import Demo from './Demo.vue'
|
|
import 'echarts/theme/dark'
|
|
import theme from './theme'
|
|
|
|
Vue.component('chart', ECharts)
|
|
|
|
// registering custom theme
|
|
console.log(ECharts);
|
|
ECharts.registerTheme('vue-echarts', theme)
|
|
|
|
new Vue({
|
|
el: 'body',
|
|
components: {
|
|
demo: Demo
|
|
}
|
|
})
|