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,11 +43,15 @@ export default {
},
methods: {
initChart() {
this.chart = new Chart(this.$refs.canvas, {
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() {
return this.$canvas;