mirror of
https://github.com/certd/certd.git
synced 2026-05-17 22:07:34 +08:00
12 lines
210 B
Vue
12 lines
210 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>
|