From b846f6273ac18aab8190f1a10e50c8feae794bc7 Mon Sep 17 00:00:00 2001 From: mahula Date: Thu, 16 Nov 2023 22:42:43 +0100 Subject: [PATCH] add basic custom booter layout --- .vuepress/client.js | 8 ++++++++ .vuepress/layouts/Layout.vue | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .vuepress/client.js create mode 100644 .vuepress/layouts/Layout.vue diff --git a/.vuepress/client.js b/.vuepress/client.js new file mode 100644 index 000000000..8dd61b414 --- /dev/null +++ b/.vuepress/client.js @@ -0,0 +1,8 @@ +import { defineClientConfig } from '@vuepress/client' +import Layout from './layouts/Layout.vue' + +export default defineClientConfig({ + layouts: { + Layout, + }, +}) \ No newline at end of file diff --git a/.vuepress/layouts/Layout.vue b/.vuepress/layouts/Layout.vue new file mode 100644 index 000000000..3d4462123 --- /dev/null +++ b/.vuepress/layouts/Layout.vue @@ -0,0 +1,21 @@ + + + + + \ No newline at end of file