首页 > 其他分享 >element-plus:el-table展开图标替换

element-plus:el-table展开图标替换

时间:2023-02-13 13:22:31浏览次数:42  
标签:__ el element plus table 图标 expand icon

展开图标被放在类el-table__expand-icon当中

操作步骤

首先将展开图标隐藏

.el-table__expand-icon>.el-icon{
	display:none !important;
}

  

然后将自己准备的图片放入el-table__expand-icon当中

.el-table__expand-icon {
  content: url('图片路径') !important
}

  

此方法适用于el-table组件的展开行或展开子级的图标替换

标签:__,el,element,plus,table,图标,expand,icon
From: https://www.cnblogs.com/xikui/p/17116006.html

相关文章

  • ELK 连接ldap
    1. kibana登录,连接ldap,最后还需要配ES:这个是怎么配的:https://www.elastic.co/guide/en/elasticsearch/reference/7.17/built-in-users.html 但是 https://www.el......
  • shell:Makefile从shell脚本中导入变量
    目录​​需求描述​​​​Makefile读取变量​​​​Makefile文件中定义变量​​​​Makefile从shell脚本中导入变量​​​​优先级​​​​1、导入shell中的变量​​​​2......
  • 解决将Editplus添加到鼠标右键的问题
    解决将Editplus添加到鼠标右键的问题以管理员身份运行EditPlus一次点击–>工具–>首选项–>常规–>勾选将EditPlus添加到系统右键菜单选项......
  • INFO: rcu_sched self-detected stall on CPU
    INFO:rcu_schedself-detectedstallonCPU0-...:(2GPsbehind)idle=ba3/2/0softirq=57744173/57744175fqs=792613(t=915060jiffiesg=633773c=......
  • delphi 信息登记
    信息登记查询代码unitUnit_Driver_Info_Register;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms,StrUtils,Dialo......
  • A Hasty Introduction to Web Development
    DefinitionsYeah,someofthesemightbesilly,butlet'sdothis!What'sthedifferencebetweentheinternetandtheweb(I'mreallyaskingthis). →thein......
  • shell练习
    #!/bin/bash###################################################根据输入的软件名,杀死全部含有软件名的进程#这里利用的awk,模拟psgrep############################......
  • 002GitLab集成Jenkins构建pipeline流水线任务
    CI持续集成(ContinuousIntegration),CD持续部署(ContinuousDeployment)Jenkins是一个优秀的持续集成和持续部署平台,有丰富的插件支持,可以满足各种个性化build场景。GitLab可......
  • 使用thymeleaf时,即是标签内取值为空,也不报错(可用于:判断用户是否登陆时,id的取值)
    记录:使用thymeleaf时,当标签里面的取值为null时,程序会报错为null,例如:    解决办法,此时,只需把th后面的代码改为:    即:将 th:value="${sess......
  • .Net Core使用Ocelot网关(一) -负载,限流,熔断,Header转换
    原文网址:https://www.cnblogs.com/linhuiy/p/12029652.html1.什么是API网关API网关是微服务架构中的唯一入口,它提供一个单独且统一的API入口用于访问内部一个或多个API。......