Jason Blog

開發筆記&職涯紀錄

0%

學習-vue3 slot & Card組件實作

使用vue3來製作卡片組件吧!

畫面需求

1.圖片寬高比16:9

1
2
3
4
.img {
max-width: 100%;
aspect-ratio: 16 / 9;
}

2.使用vue3 props & slot
在vue3的template中可以直接使用不具名或具名的slot標籤。

1
2
3
4
5
6
7
8
9
10
//子層  
<slot name="dics"></slot>

//父層
<template v-slot:dics>
<p v-for="key in Object.keys(item.dics)" :key="key">
<span>{{ key }}:</span>{{ item.dics[key] }}
</p>
</template>

3.子層註冊事件並回傳操作父層資料
-> 我在父層定義fn傳給子層做呼叫,達到callback作用

4.排版使用flex & grid

Card.vue

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
65
66
67
68
69
70
71
72
73
74
75
76
77
<script setup>
const props = defineProps({
img: String,
isClick: Boolean,
handleBtnClick: Function,
});
</script>

<template>
<div class="card">
<div class="ratioBox"><img class="img" :src="props.img" alt="" /></div>
<div class="dics">
<slot name="dics"></slot>

<div class="btnP">
<button
class="btn"
:class="props.isClick ? 'btnDelete' : 'btnPrimary'"
@click="handleBtnClick"
>
{{ props.isClick ? "DELETE" : "ADD" }}
</button>
</div>
</div>
</div>
</template>

<style>
.card {
display: flex;
flex-direction: column;
background: #333;
padding: 0px 10px;
max-width: 350px;
}

.img {
max-width: 100%;
aspect-ratio: 16 / 9;
}

.dics {
display: flex;
flex-direction: column;
color: #fff;
padding: 10px 0;
}
p {
padding: 6px 10px;
display: grid;
grid-template-columns: 1fr 3fr;
}

span {
color: #ccc;
}
.btnP {
padding: 6px 10px;
text-align: right;
}

.btn {
padding: 6px 10px;
text-align: center;
cursor: pointer;
transition: all 0.5s;
}

.btnPrimary {
background-color: paleturquoise;
}

.btnDelete {
background-color: red;
}
</style>