mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 01:34:47 +08:00
18 lines
428 B
Vue
18 lines
428 B
Vue
<template>
|
|
<el-card style="margin-top: 10px">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span>备份</span>
|
|
</div>
|
|
</template>
|
|
<el-row>
|
|
<el-col :span="1"><br /></el-col>
|
|
<el-col :span="8"> </el-col>
|
|
</el-row>
|
|
</el-card>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
onMounted(() => {});
|
|
</script>
|