mirror of
https://github.com/certd/certd.git
synced 2026-05-16 04:58:57 +08:00
feat: 站点个性化设置
This commit is contained in:
@@ -101,6 +101,11 @@ export default defineComponent({
|
||||
return slots;
|
||||
}
|
||||
for (const sub of children) {
|
||||
if (sub.meta?.show != null) {
|
||||
if (sub.meta.show === false || (typeof sub.meta.show === "function" && !sub.meta.show())) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
const title: any = () => {
|
||||
if (sub?.meta?.icon) {
|
||||
// @ts-ignore
|
||||
|
||||
Reference in New Issue
Block a user