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);

View File

@@ -1,5 +1,8 @@
<template>
<div class="container">
<div
class="container"
@click="blur"
>
<Header />
<div class="content">
@@ -9,11 +12,14 @@
</template>
<script setup>
import Header from '../components/header/header.vue';
</script>
import events from '#/src/events.js';
<style>
</style>
import Header from '../components/header/header.vue';
function blur() {
events.emit('blur');
}
</script>
<style scoped>
.container {