<el-menu
mode="horizontal"
class="user-info"
text-color="-sharp888888"
active-text-color="-sharp888888"
:router="true"
default-active="1"
>
<el-submenu index="1" popper-class="menu" style="height:50px; float: right;">
<template slot="title" style="line-height: 50px;height: 50px;">
{{userRealname}}
</template>
<el-menu-item index="1-1" route="/change_pwd">
</el-menu-item>
<el-menu-item index="1-2" @click="logout"></el-menu-item>
</el-submenu>
</el-menu>
want to set the background color for this drop-down. The official document provides a popper-class class, but the setting seems to be useless. I want to know how to change it
.