@oiij/naive-ui
Version:
Som Composable Functions And Components for Vue 3
14 lines (13 loc) • 481 B
TypeScript
import { SpinProps } from 'naive-ui';
import { CSSProperties, RendererElement } from 'vue';
import { ClassStyle } from '../data-table-plus';
export { default as NFullLoading } from './FullLoading.vue';
export type FullLoadingProps = {
show?: boolean;
appendTo?: string | RendererElement;
mask?: boolean | CSSProperties;
blur?: boolean;
disableScroll?: boolean;
scrollSelector?: string | HTMLElement;
spinProps?: Omit<SpinProps, 'show'> & ClassStyle;
};