Browse Source
Merge pull request #1284 from colinin/fix-setting-slot-event
fix(vben5): Fix the slot setting event
pull/1312/head
yx lin
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
apps/vben5/packages/@abp/settings/src/components/settings/SettingForm.vue
|
|
@ -142,8 +142,8 @@ onMounted(onGet); |
|
|
v-if="detail.slot" |
|
|
v-if="detail.slot" |
|
|
:change=" |
|
|
:change=" |
|
|
detail.valueType === ValueType.Boolean |
|
|
detail.valueType === ValueType.Boolean |
|
|
? onCheckChange(detail) |
|
|
? onCheckChange |
|
|
: onValueChange(detail) |
|
|
: onValueChange |
|
|
" |
|
|
" |
|
|
:detail="detail" |
|
|
:detail="detail" |
|
|
:name="detail.slot" |
|
|
:name="detail.slot" |
|
|
|