ant-design-vue/components/cascader/demo/search.md

80 lines
1.8 KiB
Markdown
Raw Normal View History

2018-03-04 08:02:46 +00:00
<cn>
#### 搜索
可以直接搜索选项并选择。
> `Cascader[showSearch]` 暂不支持服务端搜索,更多信息见 [#5547](https://github.com/ant-design/ant-design/issues/5547)
</cn>
<us>
#### Search
Search and select options directly.
> Now, `Cascader[showSearch]` doesn't support search on server, more info [#5547](https://github.com/ant-design/ant-design/issues/5547)
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-04 08:02:46 +00:00
<template>
2019-09-28 12:45:07 +00:00
<a-cascader
:options="options"
:showSearch="{filter}"
@change="onChange"
placeholder="Please select"
/>
2018-03-04 08:02:46 +00:00
</template>
<script>
2019-09-28 12:45:07 +00:00
export default {
data() {
return {
options: [
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
{
value: 'xiasha',
label: 'Xia Sha',
disabled: true,
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua men',
},
],
},
],
},
],
};
2018-04-07 06:29:59 +00:00
},
2019-09-28 12:45:07 +00:00
methods: {
onChange(value, selectedOptions) {
console.log(value, selectedOptions);
},
filter(inputValue, path) {
return path.some(
option => option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1,
);
},
2018-04-07 06:29:59 +00:00
},
2019-09-28 12:45:07 +00:00
};
2018-03-04 08:02:46 +00:00
</script>
```