mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-26 18:20:40 +00:00
16 lines
378 B
Vue
16 lines
378 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
bvId: string
|
|
}>()
|
|
const link = `https://www.bilibili.com/video/${props.bvId}/`
|
|
</script>
|
|
|
|
<template>
|
|
<div class="video_link">
|
|
<a :href="link" target="_blank" bg-blue:10 px4 py3 rounded block mt2 flex items-center gap2>
|
|
<div i-carbon:play-filled flex-none text-lg />
|
|
<slot />
|
|
</a>
|
|
</div>
|
|
</template>
|