hi-ucs/back/src/views/modules/workBench/components/bottom-view.vue

19 lines
346 B
Vue
Raw Normal View History

2022-06-29 15:50:26 +08:00
<template>
<div class="bottom-view">
2022-06-30 10:51:16 +08:00
2022-06-29 15:50:26 +08:00
</div>
</template>
<script>
2022-06-30 10:51:16 +08:00
import FrequencyTop5View from './frequency-top5-view.vue';
2022-06-29 15:50:26 +08:00
export default {
2022-06-30 10:51:16 +08:00
components: { FrequencyTop5View }
2022-06-29 15:50:26 +08:00
}
</script>
<style lang="scss" scoped>
.bottom-view {
width: 100%;
height: 335px;
background: green;
box-sizing: border-box;
}
</style>