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-05-04_vuex-01-starting.../src/components/BaseContainer.vue

25 lines
320 B
Vue

<template>
<section>
<h2>{{ title }}</h2>
<slot></slot>
</section>
</template>
<script>
export default {
props: ['title'],
};
</script>
<style scoped>
section {
max-width: 30rem;
margin: 2rem auto;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
}
h2 {
text-align: center;
}
</style>