32 lines
638 B
Vue
32 lines
638 B
Vue
|
<template>
|
||
|
<mk-window ref="window" width="500px" height="560px" :popout="popout" @closed="$destroy">
|
||
|
<span slot="header" :class="$style.header">%fa:comments%メッセージ: {{ user.name }}</span>
|
||
|
<mk-messaging-room :user="user" :class="$style.content"/>
|
||
|
</mk-window>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import { url } from '../../../config';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
props: ['user'],
|
||
|
computed: {
|
||
|
popout(): string {
|
||
|
return `${url}/i/messaging/${this.user.username}`;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" module>
|
||
|
.header
|
||
|
> [data-fa]
|
||
|
margin-right 4px
|
||
|
|
||
|
.content
|
||
|
height 100%
|
||
|
overflow auto
|
||
|
|
||
|
</style>
|