24 lines
421 B
Vue
24 lines
421 B
Vue
<template>
|
|
<div class="components-container" style='height:100vh'>
|
|
<div class='chart-container'>
|
|
<lineMarker height='100%' width='100%' />
|
|
</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>
|
|
|