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