mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
import { Bar } from 'vue-chartjs'
|
|
|
|
export default {
|
|
extends: Bar,
|
|
props: ['data', 'options'],
|
|
mounted () {
|
|
this.renderChart(this.data, this.options)
|
|
}
|
|
}
|