itemActivityComment.js 281 B

123456789101112131415161718192021222324252627
  1. Component({
  2. options: {
  3. styleIsolation: "apply-shared"
  4. },
  5. /**
  6. * 组件的属性列表
  7. */
  8. properties: {
  9. comment: Object,
  10. time: String
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. },
  17. /**
  18. * 组件的方法列表
  19. */
  20. methods: {
  21. }
  22. })