ElementUI给table表头添加tooltip(自定义表头)

<el-table-column
                        prop="dealPrice"
                        label="成交单价"
                    >
                        <template
                            slot="header"
                            slot-scope="scope"
                        >
                            成交单价
                            <el-tooltip
                                class="item"
                                effect="dark"
                                content="成交单价=单价-商品优惠金额/购买数量"
                                placement="top"
                            >
                                <i class="el-icon-info"></i>
                            </el-tooltip>
                        </template>
                    </el-table-column>

搞定~

发布了61 篇原创文章 · 获赞 33 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/qq_37588752/article/details/101445720