3030 :item =" item"
3131 :label =" componentOptions.label"
3232 :loading =" item.raw.loading"
33+ :loading-wait =" componentOptions.loadingWait"
3334 name =" active"
3435 :underline-color =" componentOptions.underlineColor"
3536 :underline-style =" componentOptions.underlineStyle"
4849 :cancel-button-variant =" componentOptions.cancelButtonVariant"
4950 :cancel-icon-color =" componentOptions.cancelIconColor"
5051 :cancel-icon-text =" componentOptions.cancelIconText"
52+ :clearable =" componentOptions.clearable"
5153 :close-siblings =" componentOptions.closeSiblings"
5254 :color =" componentOptions.color"
5355 :density =" componentOptions.density"
6264 :items =" users"
6365 :label =" componentOptions.label"
6466 :loading =" item.raw.loading"
67+ :loading-wait =" componentOptions.loadingWait"
6568 :menu =" componentOptions.menu"
6669 name =" userId"
67- : return-object= " true "
70+ return-object
6871 :save-button-color =" componentOptions.saveButtonColor"
6972 :save-icon =" componentOptions.saveIcon"
7073 :save-icon-color =" componentOptions.saveIconColor"
97100 :item =" item"
98101 :label =" componentOptions.label"
99102 :loading =" item.raw.loading"
103+ :loading-wait =" componentOptions.loadingWait"
100104 name =" title"
101105 required
102106 :save-button-color =" componentOptions.saveButtonColor"
107+ :save-button-variant =" componentOptions.saveButtonVariant"
103108 :save-icon-color =" componentOptions.saveIconColor"
104109 :save-icon-text =" componentOptions.saveIconText"
105110 :truncate-length =" componentOptions.truncateTextFieldLength"
130135 :item =" item"
131136 :label =" componentOptions.label"
132137 :loading =" item.raw.loading"
138+ :loading-wait =" componentOptions.loadingWait"
133139 name =" body"
134140 :rules =" [componentOptions.rules.required, componentOptions.rules.minLength]"
135141 :save-button-color =" componentOptions.saveButtonColor"
162168 :icon-false-title =" componentOptions.iconFalseTitle"
163169 :icon-true-title =" componentOptions.iconTrueTitle"
164170 :item =" item"
171+ :loading =" item.raw.loading"
172+ :loading-wait =" componentOptions.loadingWait"
165173 name =" reviewed"
166174 :underline-color =" componentOptions.underlineColor"
167175 :underline-style =" componentOptions.underlineStyle"
@@ -208,6 +216,7 @@ const componentOptions = reactive({
208216 cancelIcon: undefined ,
209217 cancelIconColor: ' default' ,
210218 cancelIconText: ' Cancel' ,
219+ clearable: false ,
211220 closeSiblings: true ,
212221 color: ' primary' ,
213222 density: ' compact' ,
@@ -221,6 +230,7 @@ const componentOptions = reactive({
221230 iconTrue: undefined ,
222231 iconTrueTitle: undefined ,
223232 label: ' ' ,
233+ loadingWait: true ,
224234 menu: true ,
225235 rules: {
226236 minLength (value ) {
@@ -229,6 +239,7 @@ const componentOptions = reactive({
229239 required: value => !! value || ' Field is required' ,
230240 },
231241 saveButtonColor: ' default' ,
242+ saveButtonVariant: ' text' ,
232243 saveIcon: undefined ,
233244 saveIconColor: ' primary' ,
234245 saveIconText: ' Save' ,
0 commit comments