export default { data(){ return{ result:[] } }, props:['res'], watch:{ result(value){ this.result.push(value) } } }