[Bug Report] VMenu positionX, positionY unexpected behaviour
See original GitHub issueVersions and Environment
Vuetify: 1.4.1 Vue: 2.5.17 Browsers: Chrome 70.0.3538.77 OS: Linux x86_64
Steps to reproduce
See App.vue
in reproduction link.
Expected Behavior
The menu should be positioned at 0, 0.
Actual Behavior
The menu is positioned at 12, 12.
Reproduction Link
https://codesandbox.io/s/xo4qyn6myw
Other comments
See the following links for the lines of code that I found:
- https://github.com/vuetifyjs/vuetify/blob/a546c752e3209bbb09a54222e623573dbd35c038/packages/vuetify/src/mixins/menuable.js#L229
- https://github.com/vuetifyjs/vuetify/blob/a546c752e3209bbb09a54222e623573dbd35c038/packages/vuetify/src/mixins/menuable.js#L199
I am just wondering if there is a reason that this exists? Nothing seems to be documented. I’m currently trying to position a menu that has positionX
set to 0 and ran into this issue.
Thanks 😃
Issue Analytics
- State:
- Created 5 years ago
- Comments:7
Top Results From Across the Web
[Bug Report] Incorrect position of v-menu when using v-tooltip ...
Expected Behavior. Menu opens over the activator button. Actual Behavior ... [Bug Report] Menu position breaks if use with tooltip #9180.
Read more >How to Report Bugs in LibreOffice
Summarize the problem fairly precisely. bad example: “File is broken”; better example: “Menu File > Save as not available (greyed out)”. Avoid ...
Read more >Submit a bug report – Figma Help Center
Step-by-step instructions on how we can reproduce the issue. A screenshot of the error message, issue, or unexpected outcome. 2 Confirm your setup....
Read more >How to Write A Good Bug Report? Tips and Tricks
Reporting a bug is nothing but a skill and in this tutorial we will explain how to achieve this skill. “The point of...
Read more >Bug Reports — The Practical Testing Book
A bug report is a way to inform developers about unexpected behavior in software. It can also be seen as a software test...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m actually trying to position the menu at
0, 0
of the page though.I’m using
VMenu
for a menu on an Electron app. Here is an image (to activate the menu you clickFile
):I expected the menu to be placed about
12px
to the left. My question is, why is there a minimum bound set at12px
?Closing this since I eventually stopped using
VMenu