Skip to content

Commit

Permalink
fix: 修复 apiSelect 绑定值 attrs 的问题 (#1172)
Browse files Browse the repository at this point in the history
* chore(permission): fix func name typo

* fix(apiSelect): fix `v-bind` value  `attrs` to `$attrs`
  • Loading branch information
handsomeFu authored Sep 9, 2021
1 parent 83c1683 commit c753d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/src/components/ApiSelect.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<Select
@dropdownVisibleChange="handleFetch"
v-bind="attrs"
v-bind="$attrs"
@change="handleChange"
:options="getOptions"
v-model:value="state"
Expand Down

0 comments on commit c753d94

Please sign in to comment.