This commit is contained in:
こぴなたみぽ 2018-02-20 14:16:41 +09:00
parent 6426a6ed5b
commit 99296bc639
4 changed files with 53 additions and 54 deletions

View file

@ -0,0 +1,21 @@
<template>
<mk-ui>
<span slot="header">%fa:R comments%%i18n:mobile.tags.mk-messaging-page.message%</span>
<mk-messaging @navigate="navigate"/>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
mounted() {
document.title = 'Misskey | %i18n:mobile.tags.mk-messaging-page.message%';
},
methods: {
navigate(user) {
(this as any).$router.push(`/i/messaging/${user.username}`);
}
}
});
</script>