Sharkey/src/client/app/desktop/views/pages/home.vue

40 lines
590 B
Vue
Raw Normal View History

2018-02-10 07:56:33 +02:00
<template>
2018-02-15 10:50:19 +02:00
<mk-ui>
<mk-home :mode="mode" @loaded="loaded" ref="home" v-hotkey.global="keymap"/>
2018-02-15 10:50:19 +02:00
</mk-ui>
2018-02-10 07:56:33 +02:00
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-15 22:24:23 +02:00
import Progress from '../../../common/scripts/loading';
2018-02-10 07:56:33 +02:00
export default Vue.extend({
props: {
mode: {
type: String,
default: 'timeline'
}
},
computed: {
keymap(): any {
return {
't': this.focus
};
}
},
2018-02-15 22:24:23 +02:00
mounted() {
2018-08-19 15:07:18 +03:00
document.title = (this as any).os.instanceName;
2018-02-15 22:24:23 +02:00
Progress.start();
},
methods: {
2018-02-20 18:12:18 +02:00
loaded() {
Progress.done();
},
focus() {
this.$refs.home.focus();
2018-02-15 22:24:23 +02:00
}
}
2018-02-10 07:56:33 +02:00
});
</script>