user.jsconst Users = [{ for (let i = 0; i < 86; i++) { Users.push(Mock.mock({ id: Mock.Random.guid(), name: Mock.Random.cname(), addr: Mock.mock('@county(true)'), 'age|18-60': 1, birth: Mock.Random.date(), sex: Mock.Random.integer(0, 1) }));}]}export { LoginUsers, Users, Informations };user.vueexport default { data() { return { filters: { _id: '' }, loading: false, informations: [] } }, created() { axios.get('informations') .then(response => { this.informations = response.data }) .catch(e => { this.errors.push(e) }) }
添加回答
举报
0/150
提交
取消