30
30
:item =" item"
31
31
:label =" componentOptions.label"
32
32
:loading =" item.raw.loading"
33
+ :loading-wait =" componentOptions.loadingWait"
33
34
name =" active"
34
35
:underline-color =" componentOptions.underlineColor"
35
36
:underline-style =" componentOptions.underlineStyle"
48
49
:cancel-button-variant =" componentOptions.cancelButtonVariant"
49
50
:cancel-icon-color =" componentOptions.cancelIconColor"
50
51
:cancel-icon-text =" componentOptions.cancelIconText"
52
+ :clearable =" componentOptions.clearable"
51
53
:close-siblings =" componentOptions.closeSiblings"
52
54
:color =" componentOptions.color"
53
55
:density =" componentOptions.density"
62
64
:items =" users"
63
65
:label =" componentOptions.label"
64
66
:loading =" item.raw.loading"
67
+ :loading-wait =" componentOptions.loadingWait"
65
68
:menu =" componentOptions.menu"
66
69
name =" userId"
67
- : return-object= " true "
70
+ return-object
68
71
:save-button-color =" componentOptions.saveButtonColor"
69
72
:save-icon =" componentOptions.saveIcon"
70
73
:save-icon-color =" componentOptions.saveIconColor"
97
100
:item =" item"
98
101
:label =" componentOptions.label"
99
102
:loading =" item.raw.loading"
103
+ :loading-wait =" componentOptions.loadingWait"
100
104
name =" title"
101
105
required
102
106
:save-button-color =" componentOptions.saveButtonColor"
107
+ :save-button-variant =" componentOptions.saveButtonVariant"
103
108
:save-icon-color =" componentOptions.saveIconColor"
104
109
:save-icon-text =" componentOptions.saveIconText"
105
110
:truncate-length =" componentOptions.truncateTextFieldLength"
130
135
:item =" item"
131
136
:label =" componentOptions.label"
132
137
:loading =" item.raw.loading"
138
+ :loading-wait =" componentOptions.loadingWait"
133
139
name =" body"
134
140
:rules =" [componentOptions.rules.required, componentOptions.rules.minLength]"
135
141
:save-button-color =" componentOptions.saveButtonColor"
162
168
:icon-false-title =" componentOptions.iconFalseTitle"
163
169
:icon-true-title =" componentOptions.iconTrueTitle"
164
170
:item =" item"
171
+ :loading =" item.raw.loading"
172
+ :loading-wait =" componentOptions.loadingWait"
165
173
name =" reviewed"
166
174
:underline-color =" componentOptions.underlineColor"
167
175
:underline-style =" componentOptions.underlineStyle"
@@ -208,6 +216,7 @@ const componentOptions = reactive({
208
216
cancelIcon: undefined ,
209
217
cancelIconColor: ' default' ,
210
218
cancelIconText: ' Cancel' ,
219
+ clearable: false ,
211
220
closeSiblings: true ,
212
221
color: ' primary' ,
213
222
density: ' compact' ,
@@ -221,6 +230,7 @@ const componentOptions = reactive({
221
230
iconTrue: undefined ,
222
231
iconTrueTitle: undefined ,
223
232
label: ' ' ,
233
+ loadingWait: true ,
224
234
menu: true ,
225
235
rules: {
226
236
minLength (value ) {
@@ -229,6 +239,7 @@ const componentOptions = reactive({
229
239
required: value => !! value || ' Field is required' ,
230
240
},
231
241
saveButtonColor: ' default' ,
242
+ saveButtonVariant: ' text' ,
232
243
saveIcon: undefined ,
233
244
saveIconColor: ' primary' ,
234
245
saveIconText: ' Save' ,
0 commit comments