Inside a v-menu , a v-selector has z-index issue, the v-select is hidden behind the v-menu
vue vesrion 0.14.11
v-select should be in front of v-menu
v-select is behind v-menu , both have same z-index value

Yes, i have this problem too.

I am also facing the same problem.
People are no doubt having issues, but we still need a reproduction. You can observe https://vuetifyjs.com/components/dialogs #5 and it is working as expected.
Same problem!

When I had the css file linked in my index.html using the unpkg link, this was happening. However when I imported the css via webpack, it restored functionality to my menus/selects.
Try importing the css file from node_modules
It works! Thanks @baroncurtin2
Has anyone been able to reproduce this in a codepen?
@johnleider i have reproduce the issue in code pen
https://codepen.io/xaayin/pen/dzgaxG?editors=1000
That is unfortunately due to using the lazy prop. Because of that, the order in which the components are booted causes the detached content areas to line up in a way that makes the menu fall behind the dialog.
Here is an example of how to handle that, using the new z-index prop on v-menu https://codepen.io/anon/pen/eEPXYX?editors=1000
@johnleider thanks 😃
Hello....
I am still facing the problem.
Can you just brief me about the solution. My app is mostly dependent on v-menu and v-select and I am facing problem in both the components.
Please help me out
Create a new issue
On Aug 30, 2017 2:51 AM, "kvijay0007" notifications@github.com wrote:
Hello....
I am still facing the problem.
Can you just brief me about the solution. My app is mostly dependent on
v-menu and v-select and I am facing problem in both the components.
Please help me out
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/vuetifyjs/vuetify/issues/1502#issuecomment-325899187,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AIpOgs3njXusYzXW5-06fi9MKdPcJ8XIks5sdQZWgaJpZM4PEH48
.
Hi @johnleider ..
Thanks for your reply.
I have rectified the problem.
Most helpful comment
That is unfortunately due to using the lazy prop. Because of that, the order in which the components are booted causes the detached content areas to line up in a way that makes the menu fall behind the dialog.
Here is an example of how to handle that, using the new z-index prop on
v-menuhttps://codepen.io/anon/pen/eEPXYX?editors=1000