page loader

This commit is contained in:
bkfox
2023-11-29 02:05:14 +01:00
parent 4e04cfae7e
commit f5ce00795e
8 changed files with 270 additions and 204 deletions

View File

@ -3,6 +3,7 @@ import components from './components'
import { Carousel, Pagination, Navigation, Slide } from 'vue3-carousel'
const App = {
el: '#app',
delimiters: ['[[', ']]'],
@ -21,31 +22,6 @@ const App = {
computed: {
player() { return window.aircox.player; },
},
data() {
return {
carouselBreakpoints: {
400: {
itemsToShow: 1
},
600: {
itemsToShow: 1.75
},
800: {
itemsToShow: 3
},
1024: {
itemsToShow: 4
},
1280: {
itemsToShow: 4
},
1380: {
itemsToShow: 5
},
}
}
}
}
export const PlayerApp = {