Restructure layout components and update page metadata

This commit is contained in:
wangqiao
2025-08-21 22:40:17 +08:00
parent b7113c4e12
commit bf86652ff2
7 changed files with 15 additions and 11 deletions

28
layouts/default.vue Normal file
View File

@ -0,0 +1,28 @@
<template>
<div class="layout-wrap">
<div class="flex flex-1 flex-col">
<slot></slot>
<!-- 右侧固定按钮组 -->
<KlQuickMenu></KlQuickMenu>
</div>
<KlFooter></KlFooter>
</div>
</template>
<script lang="ts" setup>
// import KlQuickMenu from '~/components/kl-quick-menu/index.vue'
// import KlFooter from '~/components/kl-footer/index.vue'
</script>
<style lang="scss" scoped>
.layout-wrap {
flex: 1;
display: flex;
flex-direction: column;
background-color: #fbfcff;
width: 100%;
margin: auto;
}
</style>