1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <template>
| <div class="panel">
| <div class="title">{{ title }}</div>
| <div class="content">
| <slot></slot>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: '',
| props: {
| title: {
| type: String,
| default: '标题'
| }
| },
| }
| </script>
|
| <style scoped lang="less">
| .panel {
| height: 100%;
| border: 2px #00fefe solid;
| display: flex;
| flex-direction: column;
| .title {
| background: #00fefe;
| color: #02344f;
| font-weight: bold;
| text-align: center;
| font-size: 16px;
| line-height: 28px;
| }
| .content {
| background: #02394d;
| flex: 1;
| }
| }
| </style>
|
|