Skip to content

Commit eb1e539

Browse files
committed
release v0.5.4
1 parent 445c5ac commit eb1e539

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

example/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
},
99
"devDependencies": {
1010
"nuxt": "3.0.0-rc.1",
11-
"vite-plugin-vue-inspector": "0.5.3"
11+
"vite-plugin-vue-inspector": "0.5.4"
1212
}
1313
}

example/vue2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"sass": "^1.49.9",
1515
"typescript": "^4.5.2",
1616
"vite": "2.9.1",
17-
"vite-plugin-vue-inspector": "0.5.3",
17+
"vite-plugin-vue-inspector": "0.5.4",
1818
"vite-plugin-vue2": "^1.9.3"
1919
}
2020
}

example/vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"sass": "^1.49.9",
1616
"typescript": "^4.5.2",
1717
"vite": "2.9.1",
18-
"vite-plugin-vue-inspector": "0.5.3"
18+
"vite-plugin-vue-inspector": "0.5.4"
1919
}
2020
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-vue-inspector",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"description": "jump to local IDE source code while click the element of browser automatically.",
55
"keywords": [
66
"vue",

src/overlay/Overlay.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ export default {
150150
if (this.disabled) return
151151
const { targetNode, params } = this.getTargetNode(e)
152152
if (targetNode) {
153-
this.position.x = e.pageX
154-
this.position.y = e.pageY
153+
this.position.x = e.clientX
154+
this.position.y = e.clientY
155155
this.overlayVisible = true
156156
this.navigationParams = params
157157
}

src/overlay/index.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)