itemMessageQuestion.js 263 B

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