Files
shipping-portal/resources/assets/vue/general/mixins/stepNavi.js
T
2021-07-26 12:50:16 +08:00

22 lines
558 B
JavaScript
Vendored

export default {
methods: {
changeStep(direction) {
this.status.direction = direction;
if (direction === 'next') {
if (this.validate()) {
//this.step += 1;
this.status.email = this.parameters.email;
this.$emit('updateStatus', this.status);
}
return;
}
this.$emit('updateStatus', this.status);
this.$v.$reset();
},
},
beforeDestroy: function (event) {
},
}