@oiij/naive-ui
Version:
Som Composable Functions And Components for Vue 3
17 lines (16 loc) • 434 B
TypeScript
import { AvatarProps } from 'naive-ui';
import { CSSProperties, VNodeChild } from 'vue';
export { default as NBubble } from './Bubble.vue';
export type BubbleProps = {
avatar?: {
icon?: VNodeChild;
props?: AvatarProps;
};
content?: string;
contentClass?: string;
contentStyle?: CSSProperties;
loading?: boolean;
typing?: boolean;
markdown?: boolean;
placement?: 'start' | 'end';
};