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