持续集成分支
This commit is contained in:
31
src/views/building.vue
Normal file
31
src/views/building.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user