]> git.immae.eu Git - github/bastienwirtz/homer.git/blob - src/components/Subcard.vue
Add some local changes
[github/bastienwirtz/homer.git] / src / components / Subcard.vue
1 <template v-for="link in item.links">
2 <li><a :href="link.url">{{ link.name }}</a></li>
3 </template>
4
5 <script>
6 export default {
7 name: "Subcard",
8 props: {
9 link: Object,
10 },
11 };
12 </script>