49. ๊ณ์ฝ(์ฐ๋) 48. ๊ณ์ฝ(๋ฐฑ์๋ ์์ ) ์ฐ๋ ๋ฐฑ์๋ ์ฐ๋ import axios from 'axios'; export default { async created(){ const url = `/REST/scoutone?sno=${this.sno}`; const headers = {"Content-Type":"application/json", token : this.token}; const response = await axios.get(url,{headers}); // console.log(response); this.scout = response.data.scout; this.player = response.data.scout.player; this.agent = response.data.scou..