koel/resources/assets/js/components/main-wrapper/extra/lyrics.vue

20 lines
418 B
Vue
Raw Normal View History

2015-12-13 04:42:28 +00:00
<template>
2016-06-25 16:05:24 +00:00
<article id="lyrics">
<div class="content">
2016-10-31 04:28:12 +00:00
<div v-if="song.lyrics" v-html="song.lyrics"/>
2016-06-25 16:05:24 +00:00
<p class="none" v-else>No lyrics found. Are you not listening to Bach?</p>
</div>
</article>
2015-12-13 04:42:28 +00:00
</template>
<script>
2016-06-25 16:05:24 +00:00
export default {
props: ['song'],
};
2015-12-13 04:42:28 +00:00
</script>
<style lang="sass">
2016-06-25 16:05:24 +00:00
@import "../../../../sass/partials/_vars.scss";
@import "../../../../sass/partials/_mixins.scss";
2015-12-13 04:42:28 +00:00
</style>