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

25 lines
551 B
Vue
Raw Normal View History

2015-12-13 04:42:28 +00:00
<template>
<article id="lyrics">
<div class="content">
2016-02-08 13:14:51 +00:00
<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>
2015-12-13 04:42:28 +00:00
</template>
<script>
export default {
replace: false,
2016-02-08 13:14:51 +00:00
props: ['song'],
2015-12-13 04:42:28 +00:00
methods: {
2016-02-08 13:14:51 +00:00
resetState() {},
2015-12-13 04:42:28 +00:00
},
};
2015-12-13 04:42:28 +00:00
</script>
<style lang="sass">
2016-03-13 17:00:32 +00:00
@import "../../../../sass/partials/_vars.scss";
@import "../../../../sass/partials/_mixins.scss";
2015-12-13 04:42:28 +00:00
</style>