This commit is contained in:
jxxghp
2023-06-29 19:29:01 +08:00
parent aa00106cfe
commit 76cd494bdf
6 changed files with 125 additions and 106 deletions
+15
View 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>