mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-16 08:52:01 +08:00
26 lines
772 B
Vue
26 lines
772 B
Vue
<script setup lang="ts">
|
|
import type { TreeProps } from '@vben-core/shadcn-ui';
|
|
|
|
import { Inbox } from '@vben/icons';
|
|
import { $t } from '@vben/locales';
|
|
|
|
import { treePropsDefaults, VbenTree } from '@vben-core/shadcn-ui';
|
|
|
|
const props = withDefaults(defineProps<TreeProps>(), treePropsDefaults());
|
|
</script>
|
|
|
|
<template>
|
|
<VbenTree v-if="props.treeData?.length > 0" v-bind="props">
|
|
<template v-for="(_, key) in $slots" :key="key" #[key]="slotProps">
|
|
<slot :name="key" v-bind="slotProps"> </slot>
|
|
</template>
|
|
</VbenTree>
|
|
<div
|
|
v-else
|
|
class="flex-col-center text-muted-foreground cursor-pointer rounded-lg border p-10 text-sm font-medium"
|
|
>
|
|
<Inbox class="size-10" />
|
|
<div class="mt-1">{{ $t('common.noData') }}</div>
|
|
</div>
|
|
</template>
|