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

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' //水球图
  ]
}