// components/news-item/news-item.ts Component({ /** * 组件的属性列表 */ properties: { /// 新闻标题 title: { type: String, value: "" }, /// 新闻内容 content: { type: String, value: "" }, /// 新闻图片 imgUrl: { type: String, value: "" } }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { } })