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

6 lines
199 B
Vue

<template>
<ul v-if="config.links.names && config.links.names.length" class="list-unstyled">
<Link v-for="link in config.links.names" :link="link" :key="link.url"/>
</ul>
</template>