news-item.ts 459 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // components/news-item/news-item.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. /// 新闻标题
  8. title: {
  9. type: String,
  10. value: ""
  11. },
  12. /// 新闻内容
  13. content: {
  14. type: String,
  15. value: ""
  16. },
  17. /// 新闻图片
  18. imgUrl: {
  19. type: String,
  20. value: ""
  21. }
  22. },
  23. /**
  24. * 组件的初始数据
  25. */
  26. data: {
  27. },
  28. /**
  29. * 组件的方法列表
  30. */
  31. methods: {
  32. }
  33. })