koel/resources/assets/js/components/main-wrapper/extra/lyrics.vue
2016-11-28 11:32:09 +07:00

19 lines
440 B
Vue

<template>
<article id="lyrics">
<div class="content">
<div v-if="song.lyrics" v-html="song.lyrics"/>
<p class="none" v-if="song.id && !song.lyrics">No lyrics found. Are you not listening to Bach?</p>
</div>
</article>
</template>
<script>
export default {
props: ['song']
}
</script>
<style lang="sass">
@import "../../../../sass/partials/_vars.scss";
@import "../../../../sass/partials/_mixins.scss";
</style>