页面地址渲染没有成功

new Vue({
el:'.container',
data:{
addressList: [],//地址列表
},
mounted: function () {
this.$nextTick(() => {
this.getAddressList();
})
},
methods: {
getAddressList: function () {
this.$http.get('data/address.json').then(response => {
let res = response.data;
if (res.status === '0') {
this.addressList = res.result;
}
})
}},
});

 
                             
                            