config.ts 1.62 KB
/**
 * 需要隐藏的组件配置
 * 加重写的都是覆盖原组件的
 * 没加重写的是原来就有的
 */

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' //日期选择器
  ]
}