fe-drone-ci/src/views/charts/line.vue

25 lines
417 B
Vue

<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
<line-marker height='100%' width='100%'></line-marker>
</div>
</div>
</template>
<script>
import lineMarker from 'components/Charts/lineMarker'
export default {
components: { lineMarker }
}
</script>
<style scoped>
.chart-container{
position: relative;
width: 100%;
height: 80%;
}
</style>