somewhat fix sidebar card

This commit is contained in:
taskylizard 2023-11-02 00:26:02 +05:30
parent d21122f18c
commit 8a9bd257d1
No known key found for this signature in database
GPG key ID: 5CABA3D642DDC497
5 changed files with 14 additions and 27 deletions

View file

@ -1,7 +1,7 @@
import { h } from "vue";
import { type Theme, inBrowser } from "vitepress";
import DefaultTheme from "vitepress/theme";
import Sidebar from "./layouts/Sidebar.vue";
import Sidebar from "./components/SidebarPane.vue";
import "./style.css";
import "uno.css";
@ -10,7 +10,7 @@ if (inBrowser) import("./pwa");
export default {
Layout: () => {
return h(DefaultTheme.Layout, null, {
"sidebar-nav-after": () => h(Sidebar),
"sidebar-nav-before": () => h(Sidebar),
});
},
enhanceApp({ app, router, siteData }) { },