设置为outline:unset;或者outline:none;即可 :deep(.el-tooltip__trigger:focus-visible) { outline: unset; }
tooltip-effect="dark" style="width: 100%" :header-cell-style="getRowClass" @selection-change="handleSelectionChange" > // js方法 getRowClass({ row, column, rowIndex, columnIndex }) { if (rowIndex === 0 && columnIndex === 0) { return "background-color:#E8E9EA;font-size:13px;bor...
<el-table-column prop="url"label="访问链接"width="400"show-overflow-tooltip></el-table-column> 修改为如下代码即可: 代码语言:javascript 复制 <el-table-column label="访问链接"width="400"show-overflow-tooltip><template slot-scope="scope">{{scope.row.url}}</template></el-table-column> 最终...
useDownload: import { ElNotification } from "element-plus"; /** * @description 接收数据流生成blob,创建链接,下载文件 * @param {Function} api 导出表格的api方法(必传) * @param {String} tempName 导出的文件名(必传) * @param {Object} params 导出的参数(默认为空对象) * @param {Boolean} i...