FilterPanel 过滤面板
示例
Browsers
Google Chrome
Apple Safari
Microsoft Edge
Mozilla Firefox
Opera
Vivaldi
Internet Explorer
Maxthon
Android Browser
UC Browser
Samsung Internet
QQ Browser
<template>
<article>
<veui-filter-panel
title="Browsers"
:datasource="browsersDatasource"
>
<template slot-scope="{ items }">
<div
v-for="item in items"
v-show="!item.hidden"
:key="item.value"
class="item"
>
{{ item.label }}
</div>
</template>
</veui-filter-panel>
</article>
</template>
<script>
import { FilterPanel } from 'veui'
export default {
components: {
'veui-filter-panel': FilterPanel
},
data () {
return {
browsers: [
'Google Chrome',
'Apple Safari',
'Microsoft Edge',
'Mozilla Firefox',
'Opera',
'Vivaldi',
'Internet Explorer',
'Maxthon',
'Android Browser',
'UC Browser',
'Samsung Internet',
'QQ Browser'
]
}
},
computed: {
browsersDatasource () {
return this.browsers.map(label => {
return {
label,
value: label.toLowerCase().replace(/\s+/g, '-')
}
})
}
}
}
</script>
API
属性
名称 | 类型 | 默认值 | 描述 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
datasource | Array<Object> | [] | 数据源,项目类型为 {label: string, ...} 。 | |||||||||||||||
searchable | boolean | true | 是否允许搜索。 | |||||||||||||||
filter | function | 见描述 | 搜索过滤函数,签名为
| |||||||||||||||
search-on-input | boolean | true | 是否在输入的时候触发搜索。 | |||||||||||||||
placeholder | string | - | 搜索框的占位符。 |
插槽
名称 | 描述 | ||||||
---|---|---|---|---|---|---|---|
head | 标题区域。默认显示 title 属性值。 | ||||||
no-data | datasource 中没数据时显示的内容。 | ||||||
default | 主内容区域。
|