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/BaseCard.vue

18 lines
260 B
Vue
Raw Normal View History

2021-02-06 17:24:16 +01:00
<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>