16 lines
336 B
Vue
16 lines
336 B
Vue
<template>
|
|
<div class="gl-layout">
|
|
<div class="gl-panel gl-panel-left">
|
|
<LeftPanel />
|
|
</div>
|
|
<div class="gl-panel gl-panel-right">
|
|
<RightPanel />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LeftPanel from './components/LeftPanel.vue';
|
|
import RightPanel from './components/RightPanel.vue';
|
|
</script>
|