sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<template>
<div class="chartPie" :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,
};
},
created() {},
};
</script>