Files
sk_fems_ui/components/common/eChart/LineA.vue
2025-07-12 15:13:46 +09:00

31 lines
437 B
Vue

<template>
<div class="chartLine" :style="`height: ${VChartHeight}`">
<v-chart class="chart" :option="chartOption" autoresize />
</div>
</template>
<script>
import VChart from 'vue-echarts';
export default {
components: {
VChart,
},
props: {
VChartHeight: {
require: true,
},
chartOption: {
type: Object,
default: () => {},
require: true,
},
},
data() {
return {
option: null,
};
},
};
</script>