feat: add default placeholder for ApiSelect (#5078)

This commit is contained in:
Netfan 2024-12-09 14:03:46 +08:00 committed by GitHub
parent d085736bac
commit 018ddc75c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 8 additions and 6 deletions

View File

@ -84,6 +84,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: Select,
@ -98,6 +99,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: TreeSelect,

View File

@ -74,6 +74,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: ElSelectV2,
@ -87,6 +88,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: ElTreeSelect,

View File

@ -36,7 +36,6 @@ const [Form, formApi] = useVbenForm({
},
//
api: getAllMenusApi,
placeholder: '请选择',
},
//
fieldName: 'api',
@ -52,7 +51,6 @@ const [Form, formApi] = useVbenForm({
childrenField: 'children',
// options
labelField: 'name',
placeholder: '请选择',
valueField: 'path',
},
//

View File

@ -72,6 +72,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: NSelect,
@ -84,6 +85,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: NTreeSelect,

View File

@ -35,7 +35,6 @@ const [Form, formApi] = useVbenForm({
},
//
api: getAllMenusApi,
placeholder: '请选择',
},
//
fieldName: 'api',
@ -51,7 +50,6 @@ const [Form, formApi] = useVbenForm({
childrenField: 'children',
// options
labelField: 'name',
placeholder: '请选择',
valueField: 'path',
},
//

View File

@ -85,6 +85,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: Select,
@ -99,6 +100,7 @@ async function initComponentAdapter() {
return h(
ApiSelect,
{
placeholder: $t('ui.placeholder.select'),
...props,
...attrs,
component: TreeSelect,

View File

@ -55,7 +55,6 @@ const [BaseForm, baseFormApi] = useVbenForm({
},
//
api: getAllMenusApi,
placeholder: '请选择',
},
//
fieldName: 'api',
@ -71,7 +70,6 @@ const [BaseForm, baseFormApi] = useVbenForm({
childrenField: 'children',
// options
labelField: 'name',
placeholder: '请选择',
valueField: 'path',
},
//