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
| export default {
| menu: false,
| addBtn: false,
| border: true,
| expand: true,
| refreshBtn: false,
| headerAlign: 'center',
| column: [{
| label: '类型',
| prop: 'type',
| width: 80,
| align: 'center',
| slot: true,
| dicData: [{
| label: 'bug',
| value: 'error'
| }]
| }, {
| label: '地址',
| width: 200,
| prop: 'url',
| overHidden: true
| }, {
| label: '内容',
| prop: 'message',
| overHidden: true
| }, {
| label: '错误堆栈',
| prop: 'stack',
| hide: true
| }, {
| label: '时间',
| align: 'center',
| prop: 'time',
| width: 200
| }]
| }
|
|