Added country and birthday filters to actors page.

This commit is contained in:
2024-01-03 02:52:41 +01:00
parent b59a6dc066
commit 3c3be10c4e
21 changed files with 1061 additions and 138 deletions

View File

@@ -1,10 +1,8 @@
import { createSSRApp, h } from 'vue';
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';
@@ -32,8 +30,6 @@ function createApp(Page, pageProps, pageContext) {
app.provide('pageContext', pageContext);
app.use(FloatingVue);
app.component('Link', Link);
app.component('Icon', Icon);