2023-09-25 16:23:26 +08:00

41 lines
702 B
Vue

<!--
* @Author: Kane
* @Date: 2023-09-25 09:48:25
* @LastEditors: Kane
* @FilePath: /task_schedule/src/views/DataManagement.vue
* @Description: 数据管理view
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<div class="data_management_wrapper">
数据管理
</div>
</template>
<script lang="ts">
import { ref, reactive } from "vue";
export default {
name: "DataManagement",
setup()
{
const ui = reactive({
showUI: false,
});
return { ui, };
},
};
</script>
<style lang="scss">
.data_management_wrapper {
margin: 10px;
min-width: 800px;
>*+* {
margin-top: 10px;
}
}
</style>