ant-design-vue/components/tree/demo/line.md

42 lines
1012 B
Markdown
Raw Normal View History

2018-04-13 10:58:58 +00:00
<cn>
#### 连接线
带连接线的树。
</cn>
<us>
#### Tree With Line
Tree With Line
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-04-13 10:58:58 +00:00
<template>
2019-09-28 12:45:07 +00:00
<a-tree showLine :defaultExpandedKeys="['0-0-0']" @select="onSelect">
2018-04-13 10:58:58 +00:00
<a-tree-node key="0-0">
<span slot="title" style="color: #1890ff">parent 1</span>
<a-tree-node title="parent 1-0" key="0-0-0">
<a-tree-node title="leaf" key="0-0-0-0" />
<a-tree-node title="leaf" key="0-0-0-1" />
<a-tree-node title="leaf" key="0-0-0-2" />
</a-tree-node>
<a-tree-node title="parent 1-1" key="0-0-1">
<a-tree-node title="leaf" key="0-0-1-0" />
</a-tree-node>
<a-tree-node title="parent 1-2" key="0-0-2">
<a-tree-node title="leaf" key="0-0-2-0" />
<a-tree-node title="leaf" key="0-0-2-1" />
</a-tree-node>
</a-tree-node>
</a-tree>
</template>
<script>
2019-09-28 12:45:07 +00:00
export default {
methods: {
onSelect(selectedKeys, info) {
console.log('selected', selectedKeys, info);
},
2018-04-13 10:58:58 +00:00
},
2019-09-28 12:45:07 +00:00
};
2018-04-13 10:58:58 +00:00
</script>
```