2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-08 13:04:29 +08:00

fix: lint

This commit is contained in:
耗子
2025-02-09 22:19:14 +08:00
parent 459b71e8cb
commit 3e1caa4f2e
3 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ withDefaults(defineProps<Props>(), {
<transition appear mode="out-in" name="fade-slide">
<section class="cus-scroll-y wh-full flex-col bg-[#f5f6fb] p-15" dark:bg-hex-121212>
<slot />
<AppFooter v-if="showFooter" mt-15 />
<app-footer v-if="showFooter" mt-15 />
</section>
</transition>
</template>

View File

@@ -19,7 +19,7 @@ const route = useRoute()
</script>
<template>
<AppPage :show-footer="showFooter">
<app-page :show-footer="showFooter">
<header v-if="showHeader" mb-15 min-h-45 flex items-center justify-between px-15>
<slot v-if="$slots.header" name="header" />
<template v-else>
@@ -36,5 +36,5 @@ const route = useRoute()
<n-card flex-1>
<slot />
</n-card>
</AppPage>
</app-page>
</template>