mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-24 23:38:30 +08:00
12 lines
211 B
Vue
12 lines
211 B
Vue
<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>
|