support custom copyright text

This commit is contained in:
Timi
2025-12-19 11:41:57 +08:00
parent aad77d706e
commit 2b6218e84b

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="tui-root-layout"> <div class="tui-root-layout">
<slot></slot> <slot></slot>
<copyright :icp="icp" :domain="domain" :author="author" /> <copyright :icp="icp" :domain="domain" :author="author" :text="text" />
</div> </div>
</template> </template>
@ -16,6 +16,7 @@ withDefaults(defineProps<{
icp?: string; icp?: string;
domain?: string; domain?: string;
author?: string; author?: string;
text?: string;
}>(), { }>(), {
}); });