Vue.component('consultation-list', { template: ``, data: function() { return { chatList: "", curPage:1 } }, props:["consultaData"], methods: { viewDetail: function(id) { top.layer.open({ type: 2, maxmin: true, area: ['600px', '360px'], shadeClose: true, content: 'ddd' }); } }, watch:{ consultaData:function(val){ this.chatList=this.consultaData; } }, mounted: function() { this.$emit('init-data', this.curPage); } })