config.ts
1.62 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
55
56
57
58
59
60
61
62
63
/**
* 需要隐藏的组件配置
* 加重写的都是覆盖原组件的
* 没加重写的是原来就有的
*/
export const hideAsideComponentsObj = {
Bars: [
'VBarCommon' //柱状图
],
Lines: [
'VLineCommon', //折线图
'VLineGradients' //双折线渐变面积图
],
Pies: [
'VPieCircle' //饼图-环形
],
Maps: [
'VMapBase', //地图(可选省份)
'VMapAmap', //高德地图
],
Mores: [
'VProcess', //NaiveUI-进度
'VImage', //图片
'VImageCarousel', //轮播图
'VVideo', //视频
'VIframe', //远程网页
'VWaterPolo', //水球图
'VDial', //表盘
],
Texts: [
'VTextGradient', //渐变文字
'VTextBarrage', //弹幕文字
'VTextCommon' //文字
],
Inputs: [
'VInputsTab', //标签选择器
'VInputsSelect', //下拉选择器
'VInputsDate' //日期选择器
],
all: [
'VBarCommon', //柱状图
'VLineCommon', //折线图
'VLineLinearSingle', //单折线渐变图
'VLineGradientSingle', //单折线渐变面积图
'VLineGradients', //双折线渐变面积图
'VPieCircle', //饼图-环形
'VMapBase', //地图(可选省份)
'VMapAmap',//高德地图
'VProcess', //NaiveUI-进度
'VTextGradient', //渐变文字
'VTextBarrage', //弹幕文字
'VTextCommon', //文字
'VVideo', //视频
'VIframe', //远程网页
'VImageCarousel', //轮播图
'VWaterPolo', //水球图
'VDial', //表盘
'VInputsTab', //标签选择器
'VInputsSelect', //下拉选择器
'VInputsDate' //日期选择器
]
}