riku
2024-10-22 a7ac91bc5ae3c2ce0badca1ae9fc7ed57af95758
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <el-row >
    <el-col>
      <slot name="title"></slot>
    </el-col>
    <el-col>
      <slot name="toolbar"></slot>
    </el-col>
  </el-row>
  <el-row>
    <slot name="main"></slot>
  </el-row>
</template>
 
<script>
export default {
  // 主界面内部操作面板基础布局
};
</script>
<style scoped>
</style>