mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
19 lines
307 B
Vue
19 lines
307 B
Vue
<template>
|
|
<a :href="item.url" target="_blank">
|
|
<img :src="item.favicon" alt="Link:" height="16" width="16" />
|
|
{{ item.url }}
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SocialMediaListItem',
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
}
|
|
</script>
|