mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
feat: mobile friendly menu
This commit is contained in:
parent
f872972e69
commit
1e67fa6e0b
4 changed files with 121 additions and 35 deletions
47
src/components/MenuLayout.vue
Normal file
47
src/components/MenuLayout.vue
Normal file
|
@ -0,0 +1,47 @@
|
|||
<template>
|
||||
<n-layout has-sider>
|
||||
<n-layout-sider bordered collapse-mode="width" :collapsed-width="0" :width="240" :collapsed="isMenuCollapsed"
|
||||
@collapse="isMenuCollapsed = true" @expand="isMenuCollapsed = false" :show-trigger="false"
|
||||
:native-scrollbar="false" :position="siderPosition">
|
||||
<slot name="sider" />
|
||||
</n-layout-sider>
|
||||
<n-layout class="content">
|
||||
<slot name="content" />
|
||||
<div class="overlay" v-show="isSmallScreen && !isMenuCollapsed" @click="isMenuCollapsed = true" />
|
||||
</n-layout>
|
||||
</n-layout>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useStyleStore } from '@/stores/style.store';
|
||||
import { toRefs } from 'vue';
|
||||
import { computed } from 'vue';
|
||||
|
||||
const styleStore = useStyleStore()
|
||||
const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore)
|
||||
const siderPosition = computed(() => isSmallScreen.value ? 'absolute' : 'static')
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #00000080;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.content {
|
||||
|
||||
// background-color: #f1f5f9;
|
||||
::v-deep(.n-layout-scroll-container) {
|
||||
padding: 26px;
|
||||
}
|
||||
}
|
||||
|
||||
.n-layout {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue