mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Step: incorrect active step when insert step asynchronously
This commit is contained in:
parent
2ef74bd236
commit
925d8d8c90
@ -5,7 +5,9 @@ const [sfc, bem] = use('step');
|
|||||||
|
|
||||||
export default sfc({
|
export default sfc({
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
this.$parent.steps.push(this);
|
const { steps } = this.$parent;
|
||||||
|
const index = this.$parent.slots().indexOf(this.$vnode);
|
||||||
|
steps.splice(index === -1 ? steps.length : index, 0, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user