lanan-system-vue/src/views/index.vue

29 lines
459 B
Vue
Raw Normal View History

2024-07-30 15:07:56 +08:00
<template>
2024-10-24 15:58:24 +08:00
<div class="container_">
2025-06-06 17:33:22 +08:00
<img class="fullscreen-image" src="@/assets/images/homeImg.png" alt="首页图片">
2025-06-03 16:25:26 +08:00
</div>
2024-07-30 15:07:56 +08:00
</template>
<script>
export default {
2025-06-06 17:33:22 +08:00
name: 'Index'
2024-07-30 15:07:56 +08:00
}
</script>
<style lang="scss" scoped>
2025-06-06 17:33:22 +08:00
.container_ {
2025-06-03 16:25:26 +08:00
width: 100%;
2025-06-06 17:33:22 +08:00
height: calc(100vh - 100px);
2025-06-03 16:25:26 +08:00
margin: 0;
2025-06-06 17:33:22 +08:00
padding: 5px;
overflow: hidden;
2025-06-03 16:25:26 +08:00
.fullscreen-image {
width: 100%;
height: 100%;
2025-06-06 17:33:22 +08:00
//object-fit: cover;
object-fit: fill;
2025-06-03 16:25:26 +08:00
}
2025-06-06 17:33:22 +08:00
}
2024-07-30 15:07:56 +08:00
</style>