feat: page component (#4087)

* feat: page component

* chore: basic page

* chore: add demos

* chore: add header-sticky support

* chore: update web-ele

* chore: rename slot name

---------

Co-authored-by: Vben <ann.vben@gmail.com>
This commit is contained in:
Li Kui
2024-08-11 16:29:39 +08:00
committed by GitHub
parent b464b87ac5
commit 3015912f1a
9 changed files with 98 additions and 16 deletions

View File

@@ -0,0 +1,11 @@
interface PageHeaderProps {
title?: string;
}
interface Props extends PageHeaderProps {
headerSticky?: boolean;
showFooter?: boolean;
showHeader?: boolean;
}
export type { PageHeaderProps, Props };