Element table表格表头添加图标悬浮提示

 

<el-table-column
    label="操作"
    fixed="right"
    :render-header="tableAction"
    width="120">
    <template slot-scope="scope">
        
    </template>
</el-table-column>

在自定义表格中使用‘:render-header’属性,值为定义的方法

//表格操作提示
 tableAction() {
     return this.$createElement('HelpHint', {
         props: {
             content: '编辑车辆 / 删除车辆'
         }
     }, '操作');
 },

HelpHint为定义的外部组件

import HelpHint from ‘~/components/HelpHint/HelpHint.vue';

引入后需要声明,注意声明的名字和引入定义的名字是否相同和大小写是否一直

HelpHint.vue内容

<template>
  <span>
    <span style="margin-right: 8px"><slot></slot></span>
    <el-tooltip :content="content" :placement="placement">
      <i class="el-icon-question" style="cursor: pointer;"></i>
    </el-tooltip>
  </span>
</template>
<script>
  export default {
    name: 'HelpHint',
    props: {
      placement: {
        default: 'top'
      },
      content: String,
    },
    data() {
      return {}
    },
  }
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值