Files
fe-drone-ci/src/views/charts/line.vue
2017-08-28 13:18:35 +08:00

25 lines
419 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>