Added country and birthday filters to actors page.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user