合伙人运营小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class Grid extends SuperComponent {
  3. externalClasses: string[];
  4. relations: RelationsOptions;
  5. properties: import("./type").TdGridProps;
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. contentStyle: string;
  10. };
  11. observers: {
  12. 'column,hover,align'(): void;
  13. 'gutter,border'(): void;
  14. };
  15. lifetimes: {
  16. attached(): void;
  17. };
  18. methods: {
  19. doForChild(action: (item: WechatMiniprogram.Component.TrivialInstance) => void): void;
  20. updateContentStyle(): void;
  21. getContentMargin(): string;
  22. };
  23. }