Skip to content

Commit

Permalink
bug _
Browse files Browse the repository at this point in the history
  • Loading branch information
SUNbrightness committed Aug 4, 2020
1 parent af83885 commit 683cc82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-router-page-turning",
"version": "1.2.8",
"version": "1.2.9",
"description": "As the title suggests",
"main": "./src/VueRouterPageTurning.vue",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/VueRouterPageTurning.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}
//判断是否是排除路由
if (_.indexOf(this.exclude, toPath) != -1){
if (this.exclude.indexOf(toPath) != -1){
this.transitionName = '';
}else{
//非返回
Expand Down

0 comments on commit 683cc82

Please sign in to comment.