aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Subcard.vue
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-06-27 16:02:52 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-05-08 20:13:28 +0200
commite0a72b7dfbaac977798cbe02a840e5f400291198 (patch)
tree5273a1d7bf76689a1719772ee4351273e48af1b3 /src/components/Subcard.vue
parent796a16c8da1e40aef418559ade2252a5275708c8 (diff)
downloadhomer-e0a72b7dfbaac977798cbe02a840e5f400291198.tar.gz
homer-e0a72b7dfbaac977798cbe02a840e5f400291198.tar.zst
homer-e0a72b7dfbaac977798cbe02a840e5f400291198.zip
Add some local changes
Diffstat (limited to 'src/components/Subcard.vue')
-rw-r--r--src/components/Subcard.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/Subcard.vue b/src/components/Subcard.vue
new file mode 100644
index 0000000..808cd48
--- /dev/null
+++ b/src/components/Subcard.vue
@@ -0,0 +1,12 @@
1<template v-for="link in item.links">
2 <li><a :href="link.url">{{ link.name }}</a></li>
3</template>
4
5<script>
6export default {
7 name: "Subcard",
8 props: {
9 link: Object,
10 },
11};
12</script>