When the mobile phone browses vue-demo8, click the user menu button and the user menu will be displayed on the back of the sidebar instead of the front
Vue version - demo8 After clicking the sign out button in the user menu, the user menu will still be displayed on the sign in page
Hi,
Sorry for the late reply.
To fix this issue you need to update your toggle element as shown below.
<div class="me-n2">
<!--begin::Action-->
<a
href="#"
class="btn btn-icon btn-sm btn-active-color-primary mt-n2"
data-kt-menu-trigger="click"
data-kt-menu-attach="parent"
data-kt-menu-placement="bottom-end"
>
...
</a>
<UserMenu />
<!--end::Action-->
</div>
data-kt-menu-trigger="click"
, data-kt-menu-attach="parent"
and data-kt-menu-placement="bottom-end"
attributes on your toggle element.