mirror of
https://github.com/koel/koel
synced 2024-11-25 13:40:18 +00:00
24 lines
551 B
Vue
24 lines
551 B
Vue
<template>
|
|
<article id="lyrics">
|
|
<div class="content">
|
|
<div v-if="song.lyrics">{{{ song.lyrics }}}</div>
|
|
<p class="none" v-else>No lyrics found. Are you not listening to Bach?</p>
|
|
</div>
|
|
</article>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
replace: false,
|
|
props: ['song'],
|
|
|
|
methods: {
|
|
resetState() {},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
@import "../../../../sass/partials/_vars.scss";
|
|
@import "../../../../sass/partials/_mixins.scss";
|
|
</style>
|