43 lines
576 B
43 lines
576 B
1 year ago
|
<template>
|
||
|
<div class='comp_box'>
|
||
|
<img src="./img.png" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: 'InDevelopment',
|
||
|
components: {
|
||
|
},
|
||
|
props: {
|
||
|
text: {
|
||
|
type: String,
|
||
|
default: "暂无数据"
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss' scoped>
|
||
|
.comp_box {
|
||
|
// padding-top:160px;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
color: #8A9EAA;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
position: relative;
|
||
|
img {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
}
|
||
|
}
|
||
|
</style>
|