config.ts
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* 需要隐藏的组件配置
* 加重写的都是覆盖原组件的
* 没加重写的是原来就有的
*/
export const hideAsideComponentsObj = {
Bars: [
'VBarCommon' //柱状图
],
Lines: [
'VLineCommon', //折线图
'VLineGradients', //双折线渐变面积图
// 'ExternalVCOverrideLineGradients' //重写双折线渐变面积图
],
Pies: [
'VPieCircle' //饼图-环形
],
Maps: [
'VMapBase' //地图(可选省份)
],
Mores: [
'VProcess', //NaiveUI-进度
'VImage', //图片
'VImageCarousel', //轮播图
'VVideo', //视频
'VIframe', //远程网页
'VWaterPolo' //水球图
],
Texts: [
'VTextGradient', //渐变文字
'VTextBarrage', //弹幕文字
'VTextCommon' //文字
],
all: [
'VBarCommon', //柱状图
'VLineCommon', //折线图
'VLineLinearSingle', //单折线渐变图
'VLineGradientSingle', //单折线渐变面积图
'VLineGradients', //双折线渐变面积图
// 'ExternalVCOverrideLineGradients', //重写双折线渐变面积图
'VPieCircle', //饼图-环形
'VMapBase', //地图(可选省份)
'VProcess', //NaiveUI-进度
'VTextGradient', //渐变文字
'VTextBarrage', //弹幕文字
'VTextCommon', //文字
'VVideo', //视频
'VIframe', //远程网页
// 'VImage', //图片
'VImageCarousel', //轮播图
'VWaterPolo' //水球图
]
}