Files
certd/packages/ui/certd-client/src/vben/layouts/basic/footer/footer.vue
T

12 lines
210 B
Vue
Raw Normal View History

<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>