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

23 lines
546 B
Vue
Raw Normal View History

2018-02-20 05:16:41 +00:00
<template>
<mk-ui>
<span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'comments']"/></span>%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-08-19 12:07:18 +00:00
document.title = `${(this as any).os.instanceName} %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>