Skip to content

Commit

Permalink
feat(app-plus-nvue): getCurrentPages(returnAll)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxy060608 committed Sep 6, 2019
1 parent 99abbc4 commit 1b29984
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/uni-app-plus-nvue/dist/service.legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -852,8 +852,8 @@ var index_legacy_old = {
getUniEmitter () {
return getGlobalUniEmitter()
},
getCurrentPages () {
return getGlobalCurrentPages()
getCurrentPages (returnAll) {
return getGlobalCurrentPages(returnAll)
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/platforms/app-plus-nvue/services/index.legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export function createInstanceContext () {
getUniEmitter () {
return getGlobalUniEmitter()
},
getCurrentPages () {
return getGlobalCurrentPages()
getCurrentPages (returnAll) {
return getGlobalCurrentPages(returnAll)
}
}
}
4 changes: 2 additions & 2 deletions src/platforms/app-plus-nvue/services/index.legacy.old.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export default {
getUniEmitter () {
return getGlobalUniEmitter()
},
getCurrentPages () {
return getGlobalCurrentPages()
getCurrentPages (returnAll) {
return getGlobalCurrentPages(returnAll)
}
}
}
Expand Down

0 comments on commit 1b29984

Please sign in to comment.