You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/tree-select/demo/index.vue

49 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<script>
import Basic from './basic'
import Checkable from './checkable'
import Multiple from './multiple'
import TreeData from './treeData'
import CN from '../index.zh-CN.md'
import US from '../index.en-US.md'
const md = {
cn: `# 树型选择控件。
## 何时使用
类似 Select 的选择控件,可选择的数据结构是一个树形结构时,可以使用 TreeSelect例如公司层级、学科系统、分类目录等等。
## 代码演示`,
us: `# TreeSelect
## When To Use
\`TreeSelect\` is similar to \`Select\`, but the values are provided in a tree like structure.
Any data whose entries are defined in a hierarchical manner is fit to use this control. Examples of such case may include a corporate hierarchy, a directory structure, and so on.
## Examples
`,
}
export default {
category: 'Components',
subtitle: '树选择',
type: 'Data Entry',
title: 'TreeSelect',
render () {
return (
<div>
<md cn={md.cn} us={md.us}/>
<Basic/>
<Checkable/>
<Multiple/>
<TreeData/>
<api>
<template slot='cn'>
<CN/>
</template>
<US/>
</api>
</div>
)
},
}
</script>