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

* chore(permission): fix func name typo

* fix(apiSelect): fix `v-bind` value  `attrs` to `$attrs`
This commit is contained in:
handsomeFu 2021-09-09 09:40:53 +08:00 committed by GitHub
parent 83c1683bfd
commit c753d945e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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