Explorar o código

fix: 修复 `apiSelect` 绑定值 `attrs` 的问题 (#1172)

* chore(permission): fix func name typo

* fix(apiSelect): fix `v-bind` value  `attrs` to `$attrs`
handsomeFu %!s(int64=3) %!d(string=hai) anos
pai
achega
c753d945e0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/components/Form/src/components/ApiSelect.vue

+ 1 - 1
src/components/Form/src/components/ApiSelect.vue

@@ -1,7 +1,7 @@
 <template>
   <Select
     @dropdownVisibleChange="handleFetch"
-    v-bind="attrs"
+    v-bind="$attrs"
     @change="handleChange"
     :options="getOptions"
     v-model:value="state"