728x90
[목표]
1. 부모의 요소를 자식 컴포넌트에서 바로 사용할 수 있는 slot에 대한 이해를 높여보자
[수정전 - App.vue]
<template>
<div>
<the-header></the-header>
<badge-list></badge-list>
<user-info
:full-name="activeUser.name"
:info-text="activeUser.description"
:role="activeUser.role"
></user-info>
</div>
</template>
<script>
import TheHeader from './components/TheHeader.vue';
import UserInfo from './components/UserInfo.vue';
import BadgeList from './components/BadgeList.vue';
export default {
components: {
TheHeader: TheHeader, //TheHeader -> the-header 로 vue가 알아서 변경해줌. 라인3번보면 케밥케이스로 되어있는데 잘못된 게 아님!
UserInfo: UserInfo,
BadgeList: BadgeList,
},
data() {
return {
activeUser: {
name: 'Maximilian Schwarzmüller',
description: 'Site owner and admin',
role: 'admin',
},
};
},
};
</script>
<style>
html {
font-family: sans-serif;
}
body {
margin: 0;
}
</style>
[수정 전- BadgeList.vue]
<template>
<section>
<h2>Available Badges</h2>
<ul>
<li>
<base-badge type="admin" caption="ADMIN"></base-badge>
</li>
<li>
<base-badge type="author" caption="AUTHOR"></base-badge>
</li>
</ul>
</section>
</template>
<style scoped>
section {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
section h2 {
margin: 0.5rem 0;
color: #3a3a3a;
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
li {
margin-right: 1rem;
}
</style>
[수정 전 - BaseBadge.vue ]
<template>
<span class="badge" :class="classes">{{ caption }}</span>
</template>
<script scoped>
export default {
props: ['type', 'caption'],
computed: {
classes() {
return {
'badge--admin': this.type === 'admin',
'badge--author': this.type === 'author',
};
},
},
};
</script>
<style>
section {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
.badge {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 30px;
background-color: #ccc;
color: #2e2e2e;
}
.badge--admin {
background-color: #810036;
color: white;
}
.badge--author {
background-color: #002c8a;
color: white;
}
</style>
[수정전 - TheHeader.vue]
<template>
<header>
<h1>More on Vue Components</h1>
</header>
</template>
<style scoped>
header {
width: 100%;
height: 5rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #14005e;
}
header h1 {
color: white;
margin: 0;
}
</style>
[수정전 - UserInfo.vue]
<template>
<section>
<div>
<h3>{{ fullName }}</h3>
<base-badge :type="role" :caption="role.toUpperCase()"></base-badge>
</div>
<p>{{ infoText }}</p>
</section>
</template>
<script>
export default {
props: ['fullName', 'infoText', 'role'],
};
</script>
<style scoped>
section {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
section div {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>
[수정전 main.js]
import { createApp } from 'vue';
import App from './App.vue';
import BaseBadge from './components/BaseBadge.vue';
const app = createApp(App);
app.component('base-badge', BaseBadge);
app.mount('#app');
[수정후 App.vue]
<template>
<div>
<the-header></the-header>
<badge-list></badge-list>
<user-info
:full-name="activeUser.name"
:info-text="activeUser.description"
:role="activeUser.role"
></user-info>
</div>
</template>
<script>
import TheHeader from './components/TheHeader.vue';
import UserInfo from './components/UserInfo.vue';
import BadgeList from './components/BadgeList.vue';
export default {
components: {
TheHeader: TheHeader, //TheHeader -> the-header 로 vue가 알아서 변경해줌. 라인3번보면 케밥케이스로 되어있는데 잘못된 게 아님!
UserInfo: UserInfo,
BadgeList: BadgeList,
},
data() {
return {
activeUser: {
name: 'Maximilian Schwarzmüller',
description: 'Site owner and admin',
role: 'admin',
},
};
},
};
</script>
<style>
html {
font-family: sans-serif;
}
body {
margin: 0;
}
</style>
[수정후 BadgeList.vue]
<template>
<section>
<h2>Available Badges</h2>
<ul>
<li>
<base-badge type="admin" caption="ADMIN"></base-badge>
</li>
<li>
<base-badge type="author" caption="AUTHOR"></base-badge>
</li>
</ul>
</section>
</template>
<style scoped>
section {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
section h2 {
margin: 0.5rem 0;
color: #3a3a3a;
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
li {
margin-right: 1rem;
}
</style>
[수정후 BaseBadge.vue]
<template>
<span class="badge" :class="classes">{{ caption }}</span>
</template>
<script scoped>
export default {
props: ['type', 'caption'],
computed: {
classes() {
return {
'badge--admin': this.type === 'admin',
'badge--author': this.type === 'author',
};
},
},
};
</script>
<style scoped>
.badge {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 30px;
background-color: #ccc;
color: #2e2e2e;
}
.badge--admin {
background-color: #810036;
color: white;
}
.badge--author {
background-color: #002c8a;
color: white;
}
</style>
[수정후 BaseCard.vue]
<template>
<div>
<slot></slot>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
div{
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
</style>
[수정후 TheHeader.vue]
<template>
<header>
<h1>More on Vue Components</h1>
</header>
</template>
<style scoped>
header {
width: 100%;
height: 5rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #14005e;
}
header h1 {
color: white;
margin: 0;
}
</style>
[수정후 UserInfo.vue]
<template>
<base-card>
<header>
<h3>{{ fullName }}</h3>
<base-badge :type="role" :caption="role.toUpperCase()"></base-badge>
</header>
<p>{{ infoText }}</p>
</base-card>
</template>
<script>
export default {
props: ['fullName', 'infoText', 'role'],
};
</script>
<style scoped>
section {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
section div {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>
[수정후 main.js]
import { createApp } from 'vue';
import App from './App.vue';
import BaseBadge from './components/BaseBadge.vue';
import BaseCard from './components/BaseCard.vue';
const app = createApp(App);
app.component('base-badge', BaseBadge);
app.component('base-card', BaseCard);
app.mount('#app');
'데일리 공부 기록' 카테고리의 다른 글
hands on vue - slot에 대해 더 알아보자 (0) | 2023.03.10 |
---|---|
hands on vue - slot 여러개 해보기 (0) | 2023.03.09 |
hands on vue - scoped 스타일 적용 (0) | 2023.03.09 |
hands on vue - component의 global, local 이해(연습예제 고민하고 풀기!) (0) | 2023.03.09 |
hands on vue - 부모의 손자에게 바로 다이렉트로 값 보내기(provide&inject) (0) | 2023.03.09 |