fix[Sidebar]: fixed infinite loop bug (#289)
This commit is contained in:
parent
7725f72beb
commit
e69c2c8afc
|
@ -58,9 +58,10 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
// To fix https://github.com/PanJiaChen/vue-admin-template/issues/237
|
||||||
onlyOneChild: null
|
// TODO: refactor with render function
|
||||||
}
|
this.onlyOneChild = null
|
||||||
|
return {}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
hasOneShowingChild(children, parent) {
|
hasOneShowingChild(children, parent) {
|
||||||
|
|
Loading…
Reference in New Issue