Nuxt/examples/dynamic-components/components/chart.js
Sébastien Chopin 2f03a305a2 Update example
2017-09-21 22:27:30 +02:00

13 lines
250 B
JavaScript

let VueChart = import('vue-chartjs' /* webpackChunkName: "vue-chartjs" */)
export default async () => {
VueChart = await VueChart
return VueChart.Bar.extend({
props: ['data'],
mounted () {
this.renderChart(this.data)
}
})
}