51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { App } from 'vue';
|
|
import { use } from 'echarts/core';
|
|
import { CanvasRenderer } from 'echarts/renderers';
|
|
import { BarChart, LineChart, PieChart, RadarChart } from 'echarts/charts';
|
|
import {
|
|
GridComponent,
|
|
TooltipComponent,
|
|
LegendComponent,
|
|
DataZoomComponent,
|
|
GraphicComponent,
|
|
} from 'echarts/components';
|
|
import Chart from './chart/index.vue';
|
|
import Breadcrumb from './breadcrumb/index.vue';
|
|
import DateRangePicker from './date-range-picker/index.vue';
|
|
import DictTag from './dict-tag/index.vue';
|
|
import RightToolbar from './right-toolbar/index.vue';
|
|
import SvgIcon from './svg-icon/index.vue';
|
|
import IconSelect from './icon-select/index.vue';
|
|
import download from './crud';
|
|
|
|
// Manually introduce ECharts modules to reduce packing size
|
|
|
|
use([
|
|
CanvasRenderer,
|
|
BarChart,
|
|
LineChart,
|
|
PieChart,
|
|
RadarChart,
|
|
GridComponent,
|
|
TooltipComponent,
|
|
LegendComponent,
|
|
DataZoomComponent,
|
|
GraphicComponent,
|
|
]);
|
|
|
|
export default {
|
|
install(Vue: App) {
|
|
// 全局方法挂载
|
|
Vue.config.globalProperties.download = download;
|
|
|
|
// 全局组件挂载
|
|
Vue.component('Chart', Chart);
|
|
Vue.component('Breadcrumb', Breadcrumb);
|
|
Vue.component('DateRangePicker', DateRangePicker);
|
|
Vue.component('DictTag', DictTag);
|
|
Vue.component('RightToolbar', RightToolbar);
|
|
Vue.component('SvgIcon', SvgIcon);
|
|
Vue.component('IconSelect', IconSelect);
|
|
},
|
|
};
|