图片显示与上传
<template>
<CurdTable :data="data" :columns="columns" :option="option" height="200px">
<template #nameHeader="scope">
<el-tag>{{ scope }}</el-tag>
</template>
</CurdTable>
</template>
<script setup>
const data = [
{
name: "张三",
img: "https://www.talklee.com/api/bing?rand=true",
},
{
name: "李四",
img: "https://www.talklee.com/api/bing?rand=true",
},
]
const columns = [
{ prop: "name", label: "姓名" },
{ prop: "img", label: "单图", form: { type: "file" } },
]
const option = {
menuWidth: 200,
menuBtnTitle: "自定义名称",
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28