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
42
43
44
45
46
47
48
49
50
51
52
| import { VxeGridPropTypes, VxeTablePropTypes } from 'vxe-table';
| import tableProps from 'vxe-table/es/table/src/props';
| import { CSSProperties } from 'vue';
|
| /**
| * @description: table二次开发需要后,需要接受的所有prop属性
| */
| export const basicProps = {
| ...tableProps,
| columns: Array as PropType<VxeGridPropTypes.Columns>,
| pagerConfig: {
| type: Object as PropType<VxeGridPropTypes.PagerConfig>,
| default: () => ({}),
| },
| proxyConfig: {
| type: Object as PropType<VxeGridPropTypes.ProxyConfig>,
| default: () => ({}),
| },
| toolbarConfig: {
| type: Object as PropType<VxeGridPropTypes.ToolbarConfig>,
| default: () => ({}),
| },
| formConfig: {
| type: Object as PropType<VxeGridPropTypes.FormConfig>,
| default: () => ({}),
| },
| zoomConfig: {
| type: Object as PropType<VxeGridPropTypes.ZoomConfig>,
| default: () => ({}),
| },
| printConfig: {
| type: Object as PropType<VxeTablePropTypes.PrintConfig>,
| default: () => ({}),
| },
| exportConfig: {
| type: Object as PropType<VxeTablePropTypes.ExportConfig>,
| default: () => ({}),
| },
| importConfig: {
| type: Object as PropType<VxeTablePropTypes.ImportConfig>,
| default: () => ({}),
| },
| size: String as PropType<VxeGridPropTypes.Size>,
| tableClass: {
| type: String,
| default: '',
| },
| tableStyle: {
| type: Object as PropType<CSSProperties>,
| default: () => ({}),
| },
| };
|
|