前提・実現したいこと
nuxt.jsで開発を行っており、chart.jsを使って棒グラフの表示をしたいと思っています。
発生している問題
chart.jsをインストール後、下のコードを記述してグラフを表示させようとした所、
以下の2つのエラーが発生し、表示することができなくなっております。
自分なりには調べてみたのですが、原因がわからず、ご教授頂けると幸いです。
client.js?06a0:97 TypeError: chart_js__WEBPACK_IMPORTED_MODULE_0__.default is not a constructor at VueComponent.renderChart (BaseCharts.js?86fc:62) at VueComponent.mounted (vue-chartjs.js?6280:15) at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854) at callHook (vue.runtime.esm.js?2b0e:4219) at Object.insert (vue.runtime.esm.js?2b0e:3139) at invokeInsertHook (vue.runtime.esm.js?2b0e:6346) at VueComponent.patch [as __patch__] (vue.runtime.esm.js?2b0e:6565) at VueComponent.Vue._update (vue.runtime.esm.js?2b0e:3948) at VueComponent.updateComponent (vue.runtime.esm.js?2b0e:4060) at Watcher.get (vue.runtime.esm.js?2b0e:4479)
./node_modules/vue-chartjs/es/BaseCharts.js 62:32-37"export 'default' (imported as 'Chart') was not found in 'chart.js'
開発環境
インストールバージョン
"nuxt": "^2.0.0"
"chart.js": "^3.0.2"
"vue-chartjs": "^3.5.1"
js
1## nuxt.config.js 2 3export default { 4~~~~ 5~~~~ 6 plugins: [ 7 { src: "@/plugins/vue-chartjs.js", ssr: false }, 8 ] 9}
js
1## plugins/vue-chart.js 2 3import Vue from "vue" 4import { Bar, mixins } from "vue-chartjs" 5const { reactiveProp } = mixins 6 7Vue.component("BarChart", { 8 extends: Bar, 9 mixins: [reactiveProp], 10 props: { 11 options: { 12 type: Object, 13 default: () => {}, 14 }, 15 }, 16 mounted() { 17 this.renderChart(this.chartData, this.options) 18 }, 19})
vue
1## components/Chart.vue 2 3<template> 4 <div> 5 <BarChart :chart-data="chartData" :options="chartOptions" /> 6 <div class="text-xs-center mt-2"> 7 <v-btn dark color="indigo" @click="randomizeData()">Randomize data 8 </v-btn> 9 </div> 10</template> 11 12<script> 13import colors from "vuetify/es5/util/colors" 14 15export default { 16 data() { 17 return { 18 chartDataValues: [], 19 chartColors: [ 20 colors.red.lighten1, 21 colors.blue.lighten1, 22 colors.yellow.lighten1, 23 colors.green.lighten1, 24 ], 25 chartLabels: ["red", "blue", "yellow", "green"], 26 chartOptions: { 27 maintainAspectRatio: false, 28 animation: { 29 duration: 1500, 30 easing: "easeInOutCubic", 31 }, 32 }, 33 } 34 }, 35 computed: { 36 chartData() { 37 return { 38 datasets: [ 39 { 40 data: this.chartDataValues, 41 backgroundColor: this.chartColors, 42 }, 43 ], 44 labels: this.chartLabels, 45 } 46 }, 47 }, 48 methods: { 49 randomizeData: function () { 50 var data = [] 51 for (var i = 0; i < this.chartLabels.length; i++) { 52 data.push(Math.floor(Math.random() * 100)) 53 } 54 this.chartDataValues = data 55 }, 56 }, 57} 58</script>
試したこと
1個めのエラーは調べてみましたが、解決方法が見つかず。
2個めのエラーからimport Chart from "chart.js"
の記述をしてみたが特に変わりませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。