mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-07-12 16:01:35 +08:00
18 lines
319 B
Vue
18 lines
319 B
Vue
<script setup lang="ts">
|
|
import MediaCardListView from '@/views/discover/MediaCardListView.vue';
|
|
|
|
// 输入参数
|
|
const props = defineProps({
|
|
type: Array as PropType<string[]>,
|
|
});
|
|
|
|
console.log(props.type);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<MediaCardListView :apipath="props.type?.join('/')"/>
|
|
</div>
|
|
</template>
|