mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-31 05:10:45 +08:00
23 lines
393 B
Vue
23 lines
393 B
Vue
<script lang="ts" setup>
|
|
// 输入参数
|
|
const props = inject('rankingPropsKey')
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="ms-1"
|
|
>
|
|
<RouterLink
|
|
:to="props.linkurl ? props.linkurl : ''"
|
|
class="slider-title"
|
|
>
|
|
<span>{{ props.title }}</span>
|
|
<VIcon
|
|
icon="mdi-arrow-right-circle-outline"
|
|
class="ms-1"
|
|
/>
|
|
</RouterLink>
|
|
</div>
|
|
</template>
|