Nuxt/examples/storybook/components/LineChart.js

10 lines
167 B
JavaScript

import { Line } from 'vue-chartjs'
export default {
extends: Line,
props: ['data', 'options'],
mounted () {
this.renderChart(this.data, this.options)
}
}