Files
Aida_Purchaser_Front/src/views/home/index.vue

37 lines
690 B
Vue
Raw Normal View History

2026-04-20 14:06:02 +08:00
<template>
2026-04-20 14:28:13 +08:00
<div class="home-index">
<section class="index">
<img src="@/assets/images/home-bg.jpg" class="bg" />
</section>
<section class="designers"></section>
<section class="design"></section>
<section class="digital-items"></section>
<section class="digital-items"></section>
<section class="footer"></section>
</div>
2026-04-20 14:06:02 +08:00
</template>
2026-04-20 14:14:31 +08:00
<script setup lang="ts">
import { computed } from 'vue'
</script>
<style lang="less">
.home-index {
2026-04-20 14:28:13 +08:00
width: 100%;
height: 100%;
overflow: hidden;
overflow-y: auto;
> section {
position: relative;
width: 100%;
height: auto;
}
> section.index {
> .bg {
width: 100%;
height: auto;
}
}
2026-04-20 14:02:55 +08:00
}
2026-04-20 14:14:31 +08:00
</style>