MCPcopy Index your code
hub / github.com/keepfool/vue-tutorials / step

Function step

06.Router/basic/js/vue-router.js:1501–1509  ·  view source on GitHub ↗
(index)

Source from the content-addressed store, hash-verified

1499 var transition = this;
1500 step(0);
1501 function step(index) {
1502 if (index >= queue.length) {
1503 cb();
1504 } else {
1505 fn(queue[index], transition, function () {
1506 step(index + 1);
1507 });
1508 }
1509 }
1510 };
1511
1512 /**

Callers 1

vue-router.jsFile · 0.85

Calls 2

cbFunction · 0.70
fnFunction · 0.70

Tested by

no test coverage detected