mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
31 lines
777 B
Vue
31 lines
777 B
Vue
<template>
|
|
<ResultsSection :title="listName" :api-function="_getTmdbMovieListByName" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import type { Ref } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import ResultsSection from "@/components/ResultsSection.vue";
|
|
import { getTmdbMovieListByName } from "../api";
|
|
|
|
const route = useRoute();
|
|
const listName: Ref<string | string[]> = ref(
|
|
route?.params?.name || "List page"
|
|
);
|
|
|
|
function _getTmdbMovieListByName(page: number) {
|
|
return getTmdbMovieListByName(listName.value?.toString(), page);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.fullwidth-button {
|
|
width: 100%;
|
|
margin: 1rem 0;
|
|
padding-bottom: 2rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
</style>
|