Files
desktop_task_schedule/code/web/task_schedule/src/views/Desktop.vue

33 lines
546 B
Vue
Raw Normal View History

2023-03-23 18:39:15 +08:00
<!--
* @Author: Kane
* @Date: 2023-03-23 16:05:08
* @LastEditors: Kane
* @FilePath: /task_schedule/src/views/Desktop.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
2023-03-27 20:47:40 +08:00
<div class="view-wrapper">
工作台
</div>
2023-03-23 18:39:15 +08:00
</template>
<script lang="ts">
export default {
name: "DeskTop",
setup()
{
return {};
},
};
</script>
<style lang="scss" scoped>
2023-03-27 20:47:40 +08:00
.view-wrapper
{
height: 2000px;
width: 2000px;
background-color: aquamarine;
padding: 0px;
}
2023-03-23 18:39:15 +08:00
</style>