mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
18 lines
291 B
JavaScript
18 lines
291 B
JavaScript
|
|
export const FhcChart = {
|
|
name: 'FhcChart',
|
|
props: {
|
|
chartOptions: {
|
|
type: Object,
|
|
}
|
|
},
|
|
template: `
|
|
<div style="width:100%;height:100%;overflow:auto">
|
|
<figure>
|
|
<highcharts class="chart" :options="chartOptions"></highcharts>
|
|
</figure>
|
|
</div>
|
|
`
|
|
};
|
|
|
|
export default FhcChart |