This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-06 cmp-adv-01-start.../src/components/base/BaseCard.vue

28 lines
461 B
Vue

<template>
<div>
<header v-if="$slots.header">
<slot name="header"></slot>
</header>
<slot></slot>
</div>
</template>
<script>
export default {};
</script>
<style scoped>
header {
display: flex;
justify-content: space-between;
align-items: center;
}
div {
margin: 2rem auto;
max-width: 30rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
</style>