Added basic login.

This commit is contained in:
2024-02-29 05:08:54 +01:00
parent 76a831eb50
commit 78b389e33a
21 changed files with 3553 additions and 189 deletions

View File

@@ -1,3 +1,3 @@
export default {
passToClient: ['pageProps', 'urlPathname', 'routeParams', 'urlParsed', 'env'],
passToClient: ['pageProps', 'urlPathname', 'routeParams', 'urlParsed', 'env', 'user'],
};

View File

@@ -1,5 +1,6 @@
import { createSSRApp, h } from 'vue';
import VueVirtualScroller from 'vue-virtual-scroller';
import FloatingVue from 'floating-vue';
import { setPageContext } from './usePageContext.js';
@@ -31,6 +32,7 @@ function createApp(Page, pageProps, pageContext) {
app.provide('pageContext', pageContext);
app.use(FloatingVue);
app.use(VueVirtualScroller);
app.component('Link', Link);