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-09-04_composition-13-d.../src/components/projects/ProjectItem.vue

24 lines
260 B
Vue

<template>
<li>
<h3>{{ title }}</h3>
</li>
</template>
<script>
export default {
props: ['title'],
};
</script>
<style scoped>
li {
background-color: #00006b;
color: white;
padding: 0.5rem;
margin: 1rem 0;
}
li h3 {
margin: 0;
}
</style>