1Panel/frontend/src/views/host/disk-management/index.vue
CityFun 9c22005b79
feat: Add disk management (#10282)
Co-authored-by: wanghe-fit2cloud <wanghe@fit2cloud.com>
2025-09-05 17:15:58 +08:00

19 lines
347 B
Vue

<template>
<div>
<RouterButton :buttons="buttons" />
<LayoutContent>
<router-view></router-view>
</LayoutContent>
</div>
</template>
<script lang="ts" setup>
import i18n from '@/lang';
const buttons = [
{
label: i18n.global.t('menu.disk'),
path: '/hosts/disk',
},
];
</script>