Skip to content

Commit

Permalink
fix: eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Silver-IT committed Jul 25, 2024
1 parent 64c7ff1 commit 6330f3d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ const RenderMessageWithMarkdown: any = {
for (const [key, value] of url.searchParams) {
query[key] = value
}
routerOptions.route = { path, query }
if (url.hash) {
routerOptions.route['hash'] = url.hash
}
routerOptions.route = { path, query, hash: url.hash }
routerOptions.href = this.$router.resolve(routerOptions.route).href
routerOptions.isInAppRouter = true
}
Expand Down

0 comments on commit 6330f3d

Please sign in to comment.