DataCardtext 数据展示
... 2021-7-29 Less than 1 minute
# DataCardtext 数据展示
Tips
1.0.2+
<avue-data-cardtext :option="option"></avue-data-cardtext>
<script>
export default {
data(){
return {
option: {
span:6,
data: [
{
click: function (item) {
alert(JSON.stringify(item));
},
title:'香菜',
color:'yellow',
icon:'el-icon-mobile-phone',
content:'殷其雷,天阴霾,雨零耶,盼君留。 殷其雷,纵不零,卿若留,吾将从。',
href:"http://www.baidu.com",
target:'_blank',
name:'文件上传',
date:'1天前'
},
{
click: function (item) {
alert(JSON.stringify(item));
},
title:'钉宫',
icon:'el-icon-bell',
color:'green',
content:'殷其雷,天阴霾,雨零耶,盼君留。 殷其雷,纵不零,卿若留,吾将从。',
href:"http://www.baidu.com",
name:'流加载',
date:'1天前'
},
{
click: function (item) {
alert(JSON.stringify(item));
},
title:'亚丝娜',
icon:'el-icon-service',
color:'#3fa1ff',
content:'殷其雷,天阴霾,雨零耶,盼君留。 殷其雷,纵不零,卿若留,吾将从。',
href:"http://www.baidu.com",
name:'表单',
date:'1天前'
},
{
click: function (item) {
alert(JSON.stringify(item));
},
title:'狂三',
icon:'el-icon-time',
color:'red',
content:'殷其雷,天阴霾,雨零耶,盼君留。 殷其雷,纵不零,卿若留,吾将从。',
href:"http://www.baidu.com",
name:'文件上传',
date:'1天前'
}
]
},
}
}
}
</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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Expand Copy Copy