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: ['1000px', '600px'], shadeClose: false, content: 'ddd' }); } }, watch:{ followUpData:function(val){ this.followUpList=this.followUpData; } }, mounted: function() { var divH = $("#tab-iframe",parent.document).height() - 75; $(".followup-list").slimScroll({ height: divH,color: '#666'}); } })