选择器
选择器组件用于从选项列表中收集用户提供的信息。
API
Components.Selects.
Components.Selects.
指定该组件应该分离到哪个DOM元素,使用CSS选择器字符串或元素的对象应用。
启用自动聚焦
Components.Selects.
应用备用输入框样式
设置搜索框的浏览器自动补全
保留已经通过 items 属性的项在本地的唯一副本
改变一个已选择项为小纸片(chips)的显示方式
Components.Selects.
添加输入框清除功能,默认图标是 Material Icons clear
将指定的色彩应用与控件
为输入长度创建一个计数器,如果未指定数字,则默认为25,不会应用任何验证。
应用暗黑主题变体
添加一个去除图标的到选定的小纸片(chips)
减小列表的最大高度
禁用输入
键入时禁用自动字符显示
将输入框设置为手动错误状态。
Components.Selects.
将输入框置于错误状态,并传入自定义的错误信息。将与来自规则(rules)属性的任何验证相结合。这个字段不会触发验证。
Components.Selects.
指定输入框为全屏宽度。
设置组件高度
Components.Selects.
不要在选择菜单中显示已选择的项
Components.Selects.
设置 items 属性的头像
禁用 items 的属性值
设置items'属性的文本值
设置items属性的值
可以是一个对象数组或字符窜数组,当使用对象时,会查找文本和值字段,这可以使用 item-text 和 item-value 属性来改变。
Components.Selects.
应用明亮主题变体
Components.Selects.
将自定义字符掩码应用于输入框。有关更多信息,请参阅上面的掩码表格。
Components.Selects.
Components.Selects.
多选,接受数组作为值
当没有数据时现实的文本
当使用 clearable 属性, 一旦清除,选择菜单将打开或保持打开,这个取决于当前状态
Components.Selects.
Components.Selects.
Components.Selects.
显示前缀
Components.Selects.
Components.Selects.
Components.Selects.
返回未修改的掩码字符串
将选择器的行为更改为直接返回对象,而不是 item-value 指定的值
Components.Selects.
返回True或带有错误信息的字符串的函数数组。
Label does not move on focus/dirty
Components.Selects.
Components.Selects.
Components.Selects.
Components.Selects.
Components.Selects.
显示后缀
设置输入类型
延迟验证直到失去焦点的事件被触发
控制可见性
Components.Selects.
补充
Mask | Description |
---|---|
Masks | |
# | Any digit |
A | Any capital letter |
a | Any small letter |
N | Any capital alphanumeric character |
n | Any small alphanumeric character |
X | Any special symbol (-!$%^&*()_+|~=`{}[]:";'<>?,./\) or space |
Pre-made | |
credit-card | #### - #### - #### - #### |
date-with-time | ##/##/#### ##:## |
phone | (###) ### - #### |
social | ###-##-#### |
time | ##:## |
time-with-seconds | ##:##:## |
示例
亮色主题
标准的单选有多种配置选项
图标
使用自定义前置或者后置图标。
多选
多选择器可以使用 v-chip
组件来显示已选项。
自定义选项的文本和值
你可以指定选项数组中的文本与值字段对应的特定属性,在默认情况下是 text 和 value。在这个例子中,我们也可以用 return-object
属性来返回被选中的对象。
Prepend/Append item slots
The v-select
components can be optionally expanded with prepended and appended items. This is perfect for customized select-all functionality.
Change selection appearance
The selection
scoped slot can be used to customize the way selected values are shown in the input. This is great when you want something like foo (+20 others)
or don't want the selection to occupy multiple lines.