Added boob and country aggregation to actors page.

This commit is contained in:
2023-12-31 03:02:03 +01:00
parent b5a730764c
commit 6408365933
276 changed files with 37792 additions and 166 deletions

View File

@@ -1,7 +1,10 @@
import { createSSRApp, h } from 'vue';
import { setPageContext } from './usePageContext';
import FloatingVue from 'floating-vue';
import { setPageContext } from './usePageContext.js';
import '../assets/css/style.css';
import 'floating-vue/dist/style.css';
import Container from './container.vue';
import Link from '../components/link/link.vue';
@@ -29,6 +32,8 @@ function createApp(Page, pageProps, pageContext) {
app.provide('pageContext', pageContext);
app.use(FloatingVue);
app.component('Link', Link);
app.component('Icon', Icon);