mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-14 14:50:50 +08:00
25 lines
325 B
Vue
25 lines
325 B
Vue
<template>
|
|
<div class="lrc-full">
|
|
{{ lrcIndex }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
lrcList: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
lrcIndex: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
lrcTime: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|