mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-15 04:32:44 +08:00
25 lines
419 B
Vue
25 lines
419 B
Vue
<script lang="ts" setup>
|
|
// 输入参数
|
|
const props = defineProps({
|
|
linkurl: String,
|
|
title: String,
|
|
})
|
|
</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>
|