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

18 lines
394 B
Vue
Raw Normal View History

2020-09-28 09:29:13 -07:00
<template>
<li class="my-2">
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
<a :href="link.url" target="_blank" rel="noopener">
<LinkedText :text="link.headline"/>
</a>
<LinkedText :text="link.extra || ''"/>
</li>
</template>
<script>
export default {
props: {
link: { required: true },
}
};
</script>