zb-admin/src/views/charts/line.vue

23 lines
413 B
Vue
Raw Normal View History

2022-03-24 04:15:14 +00:00
<template>
<div class="chart-container">
<chart height="100%" width="100%" />
</div>
</template>
<script lang="ts" setup>
import Chart from '@/components/Charts/LineMarker.vue'
2022-03-24 04:15:14 +00:00
// export default {
// // name: 'LineChart',
// // components: { Chart }
// }
2022-03-24 04:15:14 +00:00
</script>
<style scoped>
.chart-container {
position: relative;
width: 100%;
height: calc(100vh - 130px);
}
2022-03-24 04:15:14 +00:00
</style>