Files
rustfs-console/pages/users/index.vue
T
2024-12-17 19:03:04 +08:00

26 lines
565 B
Vue

<template>
<div>
<page-header>
<template #title>
<h1 class="text-2xl font-bold">用户</h1>
</template>
</page-header>
<page-content>
<n-tabs type="card">
<n-tab-pane name="users" tab="用户">
<userTab></userTab>
</n-tab-pane>
<n-tab-pane name="userGroup" tab="用户组">
<groupTab></groupTab>
</n-tab-pane>
</n-tabs>
</page-content>
</div>
</template>
<script setup>
import { groupTab, userTab } from './tabs';
</script>
<style lang="scss" scoped></style>