fix case-sensitive bug

This commit is contained in:
Pan
2017-07-12 13:20:32 +08:00
parent 16ce4f34e1
commit 62cb24c1a6

View File

@@ -0,0 +1,25 @@
<template>
<div class="components-container" style='height:100vh'>
<div class='chart-container'>
<mix-chart id='apple' height='100%' width='100%'></mix-chart>
</div>
</div>
</template>
<script>
import mixChart from 'components/Charts/mixChart';
export default {
components: { mixChart }
};
</script>
<style scoped>
.chart-container{
position: relative;
width: 100%;
height: 90%;
padding-bottom: 40px;
}
</style>