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

24 lines
509 B
Vue
Raw Normal View History

2018-02-20 05:16:41 +00:00
<template>
<mk-ui>
2018-04-14 16:04:40 +00:00
<span slot="header">%fa:R comments%%i18n:@message%</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-04-02 04:44:32 +00:00
import getAcct from '../../../../../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 16:04:40 +00:00
document.title = 'Misskey %i18n:@message%';
2018-02-22 09:06:32 +00:00
document.documentElement.style.background = '#fff';
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>