refactor: small fixes and refactors, update coreui styles

This commit is contained in:
woothu
2019-10-15 10:53:25 +02:00
parent 14ba9223f9
commit 26d30c2fb0
11 changed files with 144 additions and 139 deletions
+6 -2
View File
@@ -13,7 +13,7 @@
<CRenderFunction :contentToRender="nav"/>
<!-- <CSidebarFooter/> -->
<CSidebarMinimizer
class="d-md-down-none"
class="d-md-down-none c-sidebar-minimized-unfoldable"
@click.native="minimize = !minimize"
/>
</CSidebar>
@@ -26,8 +26,12 @@ export default {
data () {
return {
minimize: false,
nav
nav,
show: null
}
},
mounted () {
this.$root.$on('toggle-sidebar', () => this.show = !this.show)
}
}
</script>