We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 747d549 commit a078105Copy full SHA for a078105
components/tree-select/demo/index.vue
@@ -29,32 +29,16 @@ export default {
29
subtitle: '树选择',
30
type: 'Data Entry',
31
title: 'TreeSelect',
32
- data() {
33
- return {
34
- show: true,
35
- };
36
- },
37
render() {
38
return (
39
<div>
40
- <button
41
- onClick={() => {
42
- this.show = !this.show;
43
- }}
44
- >
45
- show
46
- </button>
47
<md cn={md.cn} us={md.us} />
48
- {this.show ? (
49
- <div>
50
- <Basic />
51
- <Checkable />
52
- <Multiple />
53
- <TreeData />
54
- <Suffix />
55
- <Async />
56
- </div>
57
- ) : null}
+ <Basic />
+ <Checkable />
+ <Multiple />
+ <TreeData />
+ <Suffix />
+ <Async />
58
<api>
59
<template slot="cn">
60
<CN />
0 commit comments