pull/1196/head^2
Tuğçe Küçükoğlu 2021-05-05 17:34:48 +03:00
commit 551b0f6b28
1 changed files with 9 additions and 7 deletions

View File

@ -5,8 +5,6 @@
</template>
<script>
import * as Chart from 'chart.js';
export default {
emits: ['select'],
props: {
@ -45,10 +43,14 @@ export default {
},
methods: {
initChart() {
this.chart = new Chart(this.$refs.canvas, {
type: this.type,
data: this.data,
options: this.options
import('chart.js').then((module) => {
if (module && module.default) {
this.chart = new module.default(this.$refs.canvas, {
type: this.type,
data: this.data,
options: this.options
});
}
});
},
getCanvas() {
@ -91,4 +93,4 @@ export default {
.p-chart {
position: relative;
}
</style>
</style>