23 lines
376 B
Vue
23 lines
376 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import Swiper from './swiper.vue'
|
||
|
|
|
||
|
|
defineExpose({})
|
||
|
|
</script>
|
||
|
|
<template>
|
||
|
|
<div class="events">
|
||
|
|
<div class="placeholder"></div>
|
||
|
|
<Swiper />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.events{
|
||
|
|
.placeholder{
|
||
|
|
height: var(--main-header-height, 100px);
|
||
|
|
width: 100%;
|
||
|
|
position: sticky;
|
||
|
|
top: 0;
|
||
|
|
background-color: #000;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|