wip
This commit is contained in:
parent
87e073a359
commit
d65e5541b3
2 changed files with 31 additions and 32 deletions
|
|
@ -0,0 +1,31 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue