mirror of
				https://github.com/continew-org/continew-admin-ui.git
				synced 2025-10-31 00:57:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			388 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			388 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <LayoutMix v-if="appStore.layout === 'mix'"></LayoutMix>
 | |
|   <LayoutDefault v-else></LayoutDefault>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import LayoutDefault from './LayoutDefault.vue'
 | |
| import LayoutMix from './LayoutMix.vue'
 | |
| import { useAppStore } from '@/stores'
 | |
| 
 | |
| defineOptions({ name: 'Layout' })
 | |
| const appStore = useAppStore()
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped></style>
 |