HTML
<a-table
:columns="columns"
:data-source="data"
:pagination="false"
:stripe="true">
//表头
<span slot="ranktitle" style="color: rgb(245,172,139);">排名</span>
//表单
<span slot="img" slot-scope="img">
//注意此处src需要用动态 :src
<img :src="img" width="10px" height="10px">
</span>
</a-table>
Javascript
import icon1 from "../assets/1.png";
const columns = [
{
// title: "排名",
dataIndex: "rank",
key: "rank",
width: 60,
//表头
slots: { title: "ranktitle" },
//插入图片
scopedSlots: { customRender: "img" }
}
]
const data = [
{
key: "1",
//图片位置 注意!此处图片需要引入。
rank: icon1,
}
]