mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-03 14:50:21 +08:00
fix
This commit is contained in:
15
src/pages/browse.vue
Normal file
15
src/pages/browse.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import MediaCardListView from '@/views/discover/MediaCardListView.vue';
|
||||
|
||||
// 输入参数
|
||||
const props = defineProps({
|
||||
type: String,
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<MediaCardListView :apipath="props.type"/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -1,16 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import MediaCardListView from '@/views/discover/MediaCardListView.vue';
|
||||
import MediaCardSlideView from '@/views/discover/MediaCardSlideView.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<p class="text-2xl font-weight-medium my-5">
|
||||
TMDB电影
|
||||
</p>
|
||||
|
||||
<MediaCardListView apipath="/tmdb/movies"/>
|
||||
|
||||
<p class="text-2xl font-weight-medium my-5">
|
||||
TMDB流行趋势
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user