<p>{{info.account}}</p>
data () { return {
info: {
account: null
},
mini: false,
adminActive: true
}
}
created () {
Bus.$on('login-on', id => { this.$http.get("http://localhost:8088/api/login/searchAccount?account=" + id).then((response) => {
let res = response.data this.info = res.data console.log(this.info) //能获取到数据
})
.catch((reject) => { console.log(reject)
})
})
}
mounted () { console.log(this.info.account) //undefined}请问我应该怎样才能渲染出info.account这是this.info打印出的数据
1 回答
BIG阳
TA贡献1859条经验 获得超6个赞
data () { return { info: { account: null }, mini: false, adminActive: true } }
初始值可以为空,但是结构要保持一致。
添加回答
举报
0/150
提交
取消