Files
Code-Create/src/pages/events/index.vue

25 lines
433 B
Vue
Raw Normal View History

2026-05-19 09:57:24 +08:00
<script setup lang="ts">
import Swiper from './swiper.vue'
2026-05-19 14:48:36 +08:00
import AllEvents from './all-events.vue'
2026-05-19 09:57:24 +08:00
defineExpose({})
</script>
<template>
<div class="events">
<div class="placeholder"></div>
<Swiper />
2026-05-19 14:48:36 +08:00
<AllEvents />
2026-05-19 09:57:24 +08:00
</div>
</template>
<style lang="less" scoped>
.events{
.placeholder{
height: var(--main-header-height, 100px);
width: 100%;
position: sticky;
top: 0;
background-color: #000;
}
}
</style>