35 lines
488 B
Vue
35 lines
488 B
Vue
|
<!--
|
||
|
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>
|