- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!
- 먼저 유사한 질문이 있었는지 검색해보세요.
- 서로 예의를 지키며 존중하는 문화를 만들어가요.
- 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.
일단 getting started에 있는 차트 코드가 그전이랑 지금이랑
변동이 되어서 어떻게 처리해야할지를 모르겠습니다
아래와같은 오류가 나고있는 상황이구요 해결법을 알려주시면 감사하겠습니다!
<script>
import Chart from 'chart.js';
export default {
mounted() {
const labels = [
'January',
'February',
'March',
'April',
'May',
'June',
];
const data = {
labels: labels,
datasets: [{
label: 'My First dataset',
backgroundColor: 'rgb(255, 99, 132)',
borderColor: 'rgb(255, 99, 132)',
data: [0, 10, 5, 2, 20, 30, 45],
}]
};
const config = {
type: 'line',
data: data,
options: {}
};
}
}
</script>
<style>
</style>