feat: 新增页面布局
This commit is contained in:
17
src/renderer/layout/index.vue
Normal file
17
src/renderer/layout/index.vue
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user