This commit is contained in:
X1627315083@163.com
2026-05-19 09:57:24 +08:00
parent 6523c30d9f
commit 0bc1bd79ed
12 changed files with 169 additions and 17 deletions

View File

@@ -0,0 +1,22 @@
<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>