You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
452 B
Vue
21 lines
452 B
Vue
2 years ago
|
<template>
|
||
|
<div class="towerInformation">
|
||
|
<tower-side></tower-side>
|
||
|
<tower-table></tower-table>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import towerSide from './components/towerSide.vue';
|
||
|
import towerTable from './components/towerTable.vue';
|
||
|
export default {
|
||
|
components: { towerSide, towerTable }
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="less">
|
||
|
.towerInformation {
|
||
|
display: flex;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
background: #fff;
|
||
|
}
|
||
|
</style>
|