Sharkey/src/client/app/common/views/components/acct.vue

26 lines
503 B
Vue
Raw Normal View History

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