v4 initial commit

This commit is contained in:
Łukasz Holeczek
2021-08-02 23:57:02 +02:00
parent 9d65013c0f
commit 79559ae334
225 changed files with 13242 additions and 32434 deletions
+30
View File
@@ -0,0 +1,30 @@
<template>
<CSidebar position="fixed" selfHiding="md">
<CSidebarBrand>
<CIcon
customClasses="sidebar-brand-full"
name="logo"
size="custom-size"
:height="35"
viewBox="0 0 556 134" />
<CIcon
customClasses="sidebar-brand-narrow"
name="logo"
size="custom-size"
:height="35"
viewBox="0 0 110 134"
/></CSidebarBrand>
<AppSidebarNav />
</CSidebar>
</template>
<script>
import { AppSidebarNav } from "./AppSidebarNav";
export default {
name: "AppSidebar",
components: {
AppSidebarNav,
},
};
</script>