如何获取它,以便侧边栏菜单始终处于打开状态?我不知道代码的确切下落,但是我认为它在这里。
https://github.com/arya107/Ask-Arya-Vue-Dashboard/tree/master/src/components/SidebarPlugin
答案 0 :(得分:0)
将此添加到您的CSS文件:
.sidebar-mini .sidebar:hover {
width: 260px !important;
}
.sidebar-mini .main-panel>.content, .sidebar-mini footer {
padding-left: 310px !important;
}
但这只能在桌面设备上修复。
答案 1 :(得分:0)
showSidebar: false,
尝试将其设置为true。
https://github.com/arya107/Ask-Arya-Vue-Dashboard/blob/master/src/components/SidebarPlugin/index.js
答案 2 :(得分:0)
我认为,您需要修改https://github.com/arya107/Ask-Arya-Vue-Dashboard/blob/master/public/index.html
。在这一行19
上,此代码<body class="sidebar-mini">
除去了sidebar-mini
类。这将在所有页面上显示侧边栏。
对于第二个问题,您可以添加方法,然后将该方法添加到@click模板按钮上,如下所示:
<template>
<button type="button" class="navbar-toggler" @click="changeLang">Change Language</button>
</template>
<script>
export default {
methods: {
...
changeLang(){
this.i18n = this.$i18n;
this.i18n.locale = 'ar';
this.$rtl.enableRTL();
}
...
}
}
</script>
答案 3 :(得分:0)
只需将“ 可见”道具放置在标签中,如下所示:
可见>
它将保持打开状态。
要不在更改路线时将其关闭,请添加 noCloseOnRouteChange 道具。要删除关闭按钮,请添加 noHeader 道具。