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