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
| <template>
| <basic-container title="待办事项" :style="'height:'+height+'px' ">
| 待办
| </basic-container>
| </template>
|
| <script>
| export default {
| name: "taskPortlet",
| props:{
| height: {
| type: Number
| },
| title: {
| type: String
| },
| icon: {
| type: String
| }
| },
| }
| </script>
|
| <style scoped>
|
| </style>
|
|