Merge branch 'master' of https://github.com/primefaces/primevue
commit
551b0f6b28
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue