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