19 lines
246 B
Vue
19 lines
246 B
Vue
|
<template>
|
||
|
<div class="echartsBox">ggg</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.echartsBox {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: rgba(0,29,75,0.6);
|
||
|
border-radius: 0 0 4px 4px;
|
||
|
}
|
||
|
|
||
|
</style>
|