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