Commit c753d945e08f72cab5bc8a585601cab6a0523fca
Committed by
GitHub
1 parent
83c1683b
fix: 修复 `apiSelect` 绑定值 `attrs` 的问题 (#1172)
* chore(permission): fix func name typo * fix(apiSelect): fix `v-bind` value `attrs` to `$attrs`
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Form/src/components/ApiSelect.vue
1 | <template> | 1 | <template> |
2 | <Select | 2 | <Select |
3 | @dropdownVisibleChange="handleFetch" | 3 | @dropdownVisibleChange="handleFetch" |
4 | - v-bind="attrs" | 4 | + v-bind="$attrs" |
5 | @change="handleChange" | 5 | @change="handleChange" |
6 | :options="getOptions" | 6 | :options="getOptions" |
7 | v-model:value="state" | 7 | v-model:value="state" |