18 lines
341 B
Vue
18 lines
341 B
Vue
<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>
|
|
|