You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
570 B
42 lines
570 B
<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>
|
|
|