
* 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>
12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
interface PageHeaderProps {
|
|
title?: string;
|
|
}
|
|
|
|
interface Props extends PageHeaderProps {
|
|
headerSticky?: boolean;
|
|
showFooter?: boolean;
|
|
showHeader?: boolean;
|
|
}
|
|
|
|
export type { PageHeaderProps, Props };
|