feat(projects): 添加侧边菜单

This commit is contained in:
Soybean
2022-01-11 08:22:31 +08:00
parent 371fad4f26
commit e25afe2fad
34 changed files with 1887 additions and 391 deletions

View File

@ -52,6 +52,9 @@
@update:value="handleSetNumber($event, setMixSiderWidth)"
/>
</setting-menu>
<setting-menu label="固定底部">
<n-switch :value="theme.footer.fixed" @update:value="setFooterIsFixed" />
</setting-menu>
</n-space>
</template>
@ -68,7 +71,8 @@ const {
setTabHeight,
setSiderWidth,
setMixSiderWidth,
setTabIsCache
setTabIsCache,
setFooterIsFixed
} = useThemeStore();
function handleSetNumber(value: number | null, callback: (value: number) => void) {