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
| <template>
| <div id="app">
| <router-view />
| </div>
| </template>
|
| <script>
| export default {
| name: 'App'
| }
| </script>
| <style lang="scss">
| .tree {
| .el-tree-node {
| white-space: normal;
| .el-tree-node__content {
| height: 100%;
| align-items: start;
| margin-bottom: 5px;
| }
| }
| }
| .el-textarea.is-disabled .el-textarea__inner {
| background-color: #F5F7FA;
| border-color: #E4E7ED;
| color: #012c5a;
| cursor: not-allowed;
| }
| </style>
|
|