yudao-dev/src/views/equipment/analysis/quality/components/lineChart.vue

35 lines
488 B
Vue
Raw Normal View History

2023-09-04 13:54:37 +08:00
<!--
filename: lineChart.vue
author: liubin
date: 2023-09-04 13:45:00
description:
-->
<template>
<div class="line-chart">line LineChart</div>
</template>
<script>
export default {
name: 'LineChart',
components: {},
props: ['config'],
data() {
return {
chart: null,
};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.line-chart {
margin: 24px;
padding: 12px;
background: #e1e1e1;
min-height: 200px;
}
</style>