123456789101112131415161718192021222324 |
- import { TdPopupProps } from './type';
- import { SuperComponent } from '../common/src/index';
- export declare type PopupProps = TdPopupProps;
- export default class Popup extends SuperComponent {
- externalClasses: string[];
- behaviors: string[];
- options: {
- multipleSlots: boolean;
- };
- properties: TdPopupProps;
- data: {
- prefix: string;
- classPrefix: string;
- className: string;
- };
- lifetimes: {
- attached(): void;
- };
- methods: {
- setClass(): void;
- handleOverlayClick(): void;
- handleClose(): void;
- };
- }
|