Reinitialized commit. Update and actors overview with some filters.

This commit is contained in:
2023-12-30 06:29:53 +01:00
commit 3f099b5e95
1208 changed files with 134732 additions and 0 deletions

38
renderer/app.js Normal file
View File

@@ -0,0 +1,38 @@
import { createSSRApp, h } from 'vue';
import { setPageContext } from './usePageContext';
import '../assets/css/style.css';
import Container from './container.vue';
import Link from '../components/link/link.vue';
import Icon from '../components/icon/icon.vue';
function createApp(Page, pageProps, pageContext) {
const PageWithLayout = {
render() {
return h(
Container,
{},
{
default() {
return h(Page, pageProps || {});
},
},
);
},
};
const app = createSSRApp(PageWithLayout);
// We make pageContext available from any Vue component
setPageContext(app, pageContext);
app.provide('pageContext', pageContext);
app.component('Link', Link);
app.component('Icon', Icon);
return app;
}
export { createApp };