21 lines
536 B
Vue
21 lines
536 B
Vue
|
<template>
|
||
|
<span>
|
||
|
<router-link v-if="actor.domain === null"
|
||
|
:to="{name: 'Profile', params: { name: actor.preferredUsername } }"
|
||
|
>
|
||
|
<slot></slot>
|
||
|
</router-link>
|
||
|
<a v-else :href="actor.url">
|
||
|
<slot></slot>
|
||
|
</a>
|
||
|
</span>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||
|
import { IActor } from '@/types/actor';
|
||
|
|
||
|
@Component
|
||
|
export default class ActorLink extends Vue {
|
||
|
@Prop() actor!: IActor;
|
||
|
}
|
||
|
</script>
|