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-03-29 00:48:47 -05:00
|
|
|
<img :src="`${user.avatarUrl}?thumbnail&size=64`" alt=""/>{{ user.name }}のフォロワー
|
2018-02-16 02:43:25 -06:00
|
|
|
</span>
|
2018-02-22 08:05:05 -06:00
|
|
|
<mk-followers :user="user"/>
|
2018-02-16 02:43:25 -06:00
|
|
|
</mk-window>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['user']
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
|
|
|
.header
|
|
|
|
> img
|
|
|
|
display inline-block
|
|
|
|
vertical-align bottom
|
|
|
|
height calc(100% - 10px)
|
|
|
|
margin 5px
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
</style>
|