29 lines
		
	
	
		
			568 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			568 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <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>
 | 
