17 lines
374 B
Vue
17 lines
374 B
Vue
<script setup lang="ts">
|
|
import { $t } from '@/locales';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
|
|
<NCard
|
|
:title="$t('page.sys.rbac.region.title')"
|
|
:bordered="false"
|
|
size="small"
|
|
class="card-wrapper sm:flex-1-hidden"
|
|
></NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|