feat: 新增页面布局

This commit is contained in:
duanshuwen
2025-12-01 22:16:34 +08:00
parent edd8b939d3
commit ae19c6c551
13 changed files with 174 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div class="bg box-border w-full h-screen flex pt-[8px] pb-[8px]">
<div class="w-[952px] h-full">
<slot></slot>
</div>
<TaskList />
<Menus />
</div>
</template>
<script setup lang="ts">
import TaskList from '@/components/TaskList/index.vue'
import Menus from '@/components/Menus/index.vue'
</script>