This commit is contained in:
taskylizard 2023-11-03 15:52:52 +05:30
parent 234e42e5b6
commit fee503e3e3
No known key found for this signature in database
GPG Key ID: 5CABA3D642DDC497
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<script setup lang="ts">
import Field from "./PaneFields.vue";
import Field from "./CardField.vue";
import Modal from "./Modal.vue";
</script>

View File

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