Files
bdrp-admin/packages/effects/layouts/src/basic/footer/footer.vue

12 lines
211 B
Vue
Raw Normal View History

2026-04-01 15:45:43 +08:00
<script lang="ts" setup>
defineOptions({
name: 'LayoutFooter',
});
</script>
<template>
<div class="flex-center text-muted-foreground relative h-full w-full text-xs">
<slot></slot>
</div>
</template>