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

20 lines
304 B
Vue

<template>
<div>
<ul v-for="goal in goals" :key="goal">
<slot :item="goal"></slot>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
goals: ["Finish the course", "Learn Vue"],
};
},
};
</script>
<style></style>