Vue가 특정 API 요청에 대한 데이터를 렌더링하지 않음 다음 구성 요소가 있는데 import Card from "../components/Card"; import axios from "axios"; export default { name: 'Home', components: {Card}, data() { return { data: null, } }, created() { axios.get('https://images-api.nasa.gov/search?q=mars').then(res => { return res.data.collection.items }).then(res => { this.data = res; }) } } "img" 프로펠러를 전달할 수 없어 카드 컴포넌트를 렌더링할 때 문제가 발생하..