eight
2024-09-03 9558a021310c22ec73d144e8af70c0877a50e8c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script setup lang="ts">
 
defineOptions({ name: 'roomscreen' })
 
</script>
 
<template>
  <el-container>
    <el-aside width="200px">Aside</el-aside>
    <el-container>
      <el-header>Header</el-header>
      <el-main>Main</el-main>
      <el-footer>Footer</el-footer>
    </el-container>
  </el-container>
</template>
 
<style scoped lang="scss">
 
</style>