Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
0a8c6af8
Commit
0a8c6af8
authored
Oct 12, 2016
by
baiyaaaaa
Committed by
cinwell.li
Oct 13, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tree-node checkbox bug
parent
58194f78
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG.md
CHANGELOG.md
+1
-0
packages/tree/src/tree-node.vue
packages/tree/src/tree-node.vue
+2
-2
No files found.
CHANGELOG.md
View file @
0a8c6af8
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
-
Popper 重构 vue-popper
-
Popper 重构 vue-popper
-
Pagination 修复输入后再点击切换,输入框的值不更新
-
Pagination 修复输入后再点击切换,输入框的值不更新
-
Step: 修复自定义 icon 的样式
-
Step: 修复自定义 icon 的样式
-
修复 Tree 组件 checkbox 点击失效的问题
### 1.0.0-rc.6
### 1.0.0-rc.6
...
...
packages/tree/src/tree-node.vue
View file @
0a8c6af8
...
@@ -94,9 +94,9 @@
...
@@ -94,9 +94,9 @@
}
}
},
},
handleCheckChange
(
checked
)
{
handleCheckChange
(
ev
)
{
if
(
!
this
.
node
.
indeterminate
)
{
if
(
!
this
.
node
.
indeterminate
)
{
this
.
node
.
setChecked
(
checked
,
true
);
this
.
node
.
setChecked
(
ev
.
target
.
checked
,
true
);
}
}
}
}
},
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment