我正在制作一个表单,其中包含带有长字符串项目的 v-select 控件,例如
要显示的长字符串项目 Head
显示手的长字符串项目
等等。
v-select 控件将使用手机显示,因此用户应阅读每个项目,而不是以下内容
- 长字符串项目...
- 长字符串项目...
是否可以选择将完整的项目文本显示到列表项中?
properties: {
slotProps: {
type: "string",
title: "Custom enums",
enum: [
'long string item to display in devices with small screens and Head',
'long string item to display in devices with small screens and Hands',
'long string item to display in devices with small screens and Eyes',
'long string item to display in devices with small screens and Stomach',],
},
}
以下是一些屏幕截图: