0e4a111f81
Resolve #7779
70 lines
1.2 KiB
Vue
70 lines
1.2 KiB
Vue
<template>
|
|
<div class="mk-app" :class="{ wallpaper }" @contextmenu.prevent="() => {}">
|
|
<XSidebar ref="nav" class="sidebar"/>
|
|
|
|
<XCommon/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { host } from '@/config';
|
|
import { search } from '@/scripts/search';
|
|
import XCommon from './_common_/common.vue';
|
|
import * as os from '@/os';
|
|
import XSidebar from '@/ui/_common_/sidebar.vue';
|
|
import { menuDef } from '@/menu';
|
|
import { ColdDeviceStorage } from '@/store';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XCommon,
|
|
XSidebar
|
|
},
|
|
|
|
provide() {
|
|
return {
|
|
navHook: (url) => {
|
|
os.pageWindow(url);
|
|
}
|
|
};
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
host: host,
|
|
menuDef: menuDef,
|
|
wallpaper: localStorage.getItem('wallpaper') != null,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
menu(): string[] {
|
|
return this.$store.state.menu;
|
|
},
|
|
},
|
|
|
|
created() {
|
|
if (window.innerWidth < 1024) {
|
|
localStorage.setItem('ui', 'default');
|
|
location.reload();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
help() {
|
|
window.open(`https://misskey-hub.net/docs/keyboard-shortcut.md`, '_blank');
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-app {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
</style>
|