tdesign-mobile-vue
Version:
tdesign-mobile-vue
16 lines (15 loc) • 372 B
TypeScript
import { TNode } from '../common';
export interface TdNavbarProps {
animation?: boolean;
capsule?: TNode;
fixed?: boolean;
left?: TNode;
leftArrow?: boolean;
right?: TNode;
safeAreaInsetTop?: boolean;
title?: string | TNode;
titleMaxLength?: number;
visible?: boolean;
onLeftClick?: () => void;
onRightClick?: () => void;
}