app.component('article-list', { template: `
{{item.title}}
{{item.update_time}}
`, data() { return {} }, props: { list: { type: Array, default: [], }, }, methods: { toDetail(id) { location.href = "/mobile/article/detail.html?id=" + id; }, }, });