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

23 lines
475 B
Vue
Raw Normal View History

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