2018-02-16 02:43:25 -06:00
|
|
|
<template>
|
2018-02-19 08:37:09 -06:00
|
|
|
<mk-window width="400px" height="550px" @closed="$destroy">
|
2018-02-16 02:43:25 -06:00
|
|
|
<span slot="header" :class="$style.header">
|
2018-07-24 09:43:14 -05:00
|
|
|
<img :src="user.avatarUrl" alt=""/>{{ '%i18n:@following%'.replace('{}', name) }}
|
2018-02-16 02:43:25 -06:00
|
|
|
</span>
|
2018-02-22 08:05:05 -06:00
|
|
|
<mk-following :user="user"/>
|
2018-02-16 02:43:25 -06:00
|
|
|
</mk-window>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-04-05 11:36:34 -05:00
|
|
|
|
2018-02-16 02:43:25 -06:00
|
|
|
export default Vue.extend({
|
2018-05-20 21:14:57 -05:00
|
|
|
props: ['user'],
|
|
|
|
computed: {
|
|
|
|
name(): string {
|
|
|
|
return Vue.filter('userName')(this.user);
|
|
|
|
}
|
|
|
|
}
|
2018-02-16 02:43:25 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
|
|
|
.header
|
|
|
|
> img
|
|
|
|
display inline-block
|
|
|
|
vertical-align bottom
|
|
|
|
height calc(100% - 10px)
|
|
|
|
margin 5px
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
</style>
|