Files
dvcp_v2_webapp/src/views/building.vue
2024-10-10 16:04:11 +08:00

32 lines
580 B
Vue

<template>
<section class="building">
<div class="title">功能开发中,敬请期待...</div>
</section>
</template>
<script>
export default {
name: "building"
}
</script>
<style lang="scss" scoped>
.building {
position: relative;
height: 100%;
background-image: url("../assets/building.png");
background-size: 400px 300px;
background-repeat: no-repeat;
background-position: center, center;
.title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: 150px;
font-weight: bold;
}
}
</style>