mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-11 18:10:49 +08:00
22 lines
440 B
Vue
22 lines
440 B
Vue
<script setup lang="ts">
|
|
import PersonDetailView from '@/views/discover/PersonDetailView.vue'
|
|
|
|
// 路由参数
|
|
const route = useRoute()
|
|
|
|
// Person Id
|
|
const personid = route.query?.personid?.toString()
|
|
|
|
// 来源
|
|
const source = route.query?.source?.toString()
|
|
|
|
// 类型
|
|
const type = route.query?.type?.toString()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<PersonDetailView :personid="personid" :type="type" :source="source" />
|
|
</div>
|
|
</template>
|