Sharkey/src/client/app/mobile/views/pages/messaging.vue

23 lines
464 B
Vue
Raw Normal View History

2018-02-20 05:16:41 +00:00
<template>
<mk-ui>
2018-04-14 17:36:01 +00:00
<span slot="header">%fa:R comments%%i18n:@messaging%</span>
2018-02-24 18:17:13 +00:00
<mk-messaging @navigate="navigate" :header-top="48"/>
2018-02-20 05:16:41 +00:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
2018-07-07 10:19:00 +00:00
import getAcct from '../../../../../misc/acct/render';
2018-03-27 07:51:12 +00:00
2018-02-20 05:16:41 +00:00
export default Vue.extend({
mounted() {
2018-04-14 17:36:01 +00:00
document.title = 'Misskey %i18n:@messaging%';
2018-02-20 05:16:41 +00:00
},
methods: {
navigate(user) {
2018-03-27 07:51:12 +00:00
(this as any).$router.push(`/i/messaging/${getAcct(user)}`);
2018-02-20 05:16:41 +00:00
}
}
});
</script>