2018-05-18 00:31:30 -05:00
|
|
|
<template>
|
|
|
|
<span class="mk-acct">
|
|
|
|
<span class="name">@{{ user.username }}</span>
|
2018-09-06 15:45:13 -05:00
|
|
|
<span class="host" :class="{ fade: $store.state.settings.contrastedAcct }" v-if="user.host || detail">@{{ user.host || host }}</span>
|
2018-05-18 00:31:30 -05:00
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-09-05 13:21:11 -05:00
|
|
|
import { host } from '../../../config';
|
2018-05-18 00:31:30 -05:00
|
|
|
export default Vue.extend({
|
2018-09-05 13:21:11 -05:00
|
|
|
props: ['user', 'detail'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host
|
|
|
|
};
|
|
|
|
}
|
2018-05-18 00:31:30 -05:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-acct
|
2018-09-06 15:45:13 -05:00
|
|
|
> .host.fade
|
2018-05-18 00:31:30 -05:00
|
|
|
opacity 0.5
|
|
|
|
</style>
|