Merge branch 'master' of https://github.com/primefaces/primevue
commit
551b0f6b28
|
@ -5,8 +5,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as Chart from 'chart.js';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
emits: ['select'],
|
emits: ['select'],
|
||||||
props: {
|
props: {
|
||||||
|
@ -45,10 +43,14 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
initChart() {
|
initChart() {
|
||||||
this.chart = new Chart(this.$refs.canvas, {
|
import('chart.js').then((module) => {
|
||||||
type: this.type,
|
if (module && module.default) {
|
||||||
data: this.data,
|
this.chart = new module.default(this.$refs.canvas, {
|
||||||
options: this.options
|
type: this.type,
|
||||||
|
data: this.data,
|
||||||
|
options: this.options
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getCanvas() {
|
getCanvas() {
|
||||||
|
@ -91,4 +93,4 @@ export default {
|
||||||
.p-chart {
|
.p-chart {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue