25 lines
499 B
Vue
25 lines
499 B
Vue
<template>
|
|
<el-container class="pi-panel">
|
|
<el-main class="main">
|
|
<left-panel></left-panel>
|
|
<el-divider direction="vertical" style="height: 100%"/>
|
|
<center-panel></center-panel>
|
|
<el-divider direction="vertical" style="height: 100%"/>
|
|
<right-panel></right-panel>
|
|
</el-main>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script setup>
|
|
import leftPanel from "./left"
|
|
import centerPanel from "./center"
|
|
import rightPanel from "./right"
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.main {
|
|
display: flex;
|
|
}
|
|
</style>
|