Commit c753d945e08f72cab5bc8a585601cab6a0523fca

Authored by handsomeFu
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`
src/components/Form/src/components/ApiSelect.vue
1 1 <template>
2 2 <Select
3 3 @dropdownVisibleChange="handleFetch"
4   - v-bind="attrs"
  4 + v-bind="$attrs"
5 5 @change="handleChange"
6 6 :options="getOptions"
7 7 v-model:value="state"
... ...