File tree 4 files changed +633
-1
lines changed
src/components/Data/Table
4 files changed +633
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ declare module '@vue/runtime-core' {
29
29
Controls : typeof import ( './src/components/Feedback/MessageBox/controls.vue' ) [ 'default' ]
30
30
'DatePicker.story' : typeof import ( './src/components/Form/datePicker.story.vue' ) [ 'default' ]
31
31
'DateTimePicker.story' : typeof import ( './src/components/Form/dateTimePicker.story.vue' ) [ 'default' ]
32
- Demo : typeof import ( './src/components/Navigation/Affix/demo.vue' ) [ 'default' ]
33
32
'Descriptions.story' : typeof import ( './src/components/Data/descriptions.story.vue' ) [ 'default' ]
34
33
'Dialog.story' : typeof import ( './src/components/Feedback/dialog.story.vue' ) [ 'default' ]
35
34
'Divider.story' : typeof import ( './src/components/Others/Divider/divider.story.vue' ) [ 'default' ]
@@ -72,6 +71,7 @@ declare module '@vue/runtime-core' {
72
71
'Space.story' : typeof import ( './src/components/Basic/space.story.vue' ) [ 'default' ]
73
72
'Steps.story' : typeof import ( './src/components/Navigation/Steps/steps.story.vue' ) [ 'default' ]
74
73
'Switch.story' : typeof import ( './src/components/Form/switch.story.vue' ) [ 'default' ]
74
+ 'Table.story' : typeof import ( './src/components/Data/Table/table.story.vue' ) [ 'default' ]
75
75
'Tabs.story' : typeof import ( './src/components/Navigation/Tabs/tabs.story.vue' ) [ 'default' ]
76
76
'Tag.story' : typeof import ( './src/components/Data/tag.story.vue' ) [ 'default' ]
77
77
'Timeline.story' : typeof import ( './src/components/Data/Timeline/timeline.story.vue' ) [ 'default' ]
Original file line number Diff line number Diff line change
1
+ export const alignOptions = [
2
+ {
3
+ label : 'left' ,
4
+ value : 'left' ,
5
+ } ,
6
+ {
7
+ label : 'center' ,
8
+ value : 'center' ,
9
+ } ,
10
+ {
11
+ label : 'right' ,
12
+ value : 'right' ,
13
+ } ,
14
+ ]
15
+
16
+ export const tableLayoutOptions = [
17
+ {
18
+ label : 'fixed' ,
19
+ value : 'fixed' ,
20
+ } ,
21
+ {
22
+ label : 'auto' ,
23
+ value : 'auto' ,
24
+ } ,
25
+ ]
You can’t perform that action at this time.
0 commit comments