在开发一套vue系统,使用el-menu,配置其:active-text-color ,但是发现实际点击时没有效果。
<el-menu
:background-color="backgroundcolor"
:text-color="textcolor"
:unique-opened="true"
:active-text-color = "settings.theme" //这里的settings.theme 是store配置的颜色,已确认这块配置没有问题,但就是不生效。
mode="vertical"
>
<sidebar-item
v-for="(route,index) in sidebarRouters"
:key="route.path+index"
:item="route"
>
</sidebar-item>
</el-menu>
为什么不生效?是在el-menu 还需要配置其他属性之后才能生效吗? 现在点击没效果,也没有is-active