This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Links.vue

20 lines
461 B
Vue

<template>
<section :class="{'mt-0': top}" v-if="config.links.links.length">
<h2 class="mb-3">
<Icon v="bookmark"/>
<T>links.headerLong</T>
</h2>
<ul class="list-unstyled">
<Link v-for="link in config.links.links" :link="link" :key="link.url"/>
</ul>
</section>
</template>
<script>
export default {
props: {
top: { type: Boolean },
}
};
</script>