mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 10:07:07 +00:00
bump vue-test-utils (#1338)
This commit is contained in:
@@ -59,7 +59,7 @@ export default create({
|
||||
},
|
||||
|
||||
created() {
|
||||
this.$parent && this.$parent.children.push(this);
|
||||
this.$parent.children && this.$parent.children.push(this);
|
||||
},
|
||||
|
||||
mounted() {
|
||||
@@ -67,7 +67,7 @@ export default create({
|
||||
},
|
||||
|
||||
destroyed() {
|
||||
this.$parent && this.$parent.children.splice(this.$parent.children.indexOf(this), 1);
|
||||
this.$parent.children && this.$parent.children.splice(this.$parent.children.indexOf(this), 1);
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
Reference in New Issue
Block a user