32 lines
580 B
Vue
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>
|