Added title to MusicRow

pull/16/head
Nikan Dalvand 2019-07-24 18:46:35 +04:30
parent 0454d51eb7
commit 516e283cb4
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<template> <template>
<section> <section>
<h1>Top music of the month</h1>
<Carousel class="carousel-custom" :paginationEnabled="false" :scrollPerPage="false" :perPageCustom="[[300, 2], [540, 3], [740, 4], [800, 3], [900, 4], [1000, 4], [1200, 5] , [1300, 6]]"> <Carousel class="carousel-custom" :paginationEnabled="false" :scrollPerPage="false" :perPageCustom="[[300, 2], [540, 3], [740, 4], [800, 3], [900, 4], [1000, 4], [1200, 5] , [1300, 6]]">
<Slide v-for="item in items" :key="item.id"> <Slide v-for="item in items" :key="item.id">
<MusicBox :item="item" /> <MusicBox :item="item" />
@ -18,6 +19,8 @@ export default {
} }
</script> </script>
<style> <style scoped lang="sass">
section
h1
margin: 20px 0px
</style> </style>