col.ts 328 B

1234567891011121314151617181920212223242526
  1. // components/cell/cell.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. span: {
  8. type: String,
  9. value: '24',
  10. },
  11. style: String,
  12. },
  13. relations: {
  14. '../row/row': {
  15. type: 'parent',
  16. },
  17. },
  18. /**
  19. * 组件的初始数据
  20. */
  21. data: {
  22. computedStyles: '',
  23. },
  24. })