Vue.component('follow-list', { template: '', data: function() { return { //1随访2预约 type:1, chatList: "" } }, methods: { viewDetail: function(id) { } }, mounted: function() { var Request = GetRequest(), vm = this; vm.type=Request['type']||1; } })