Browse Source

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

* chore(permission): fix func name typo

* fix(apiSelect): fix `v-bind` value  `attrs` to `$attrs`
pull/1182/head
handsomeFu 5 years ago
committed by GitHub
parent
commit
c753d945e0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/Form/src/components/ApiSelect.vue

2
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"

Loading…
Cancel
Save