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.
39 lines
489 B
39 lines
489 B
<template>
|
|
<div class='empty'>
|
|
<p>
|
|
{{ text }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'InDevelopment',
|
|
components: {
|
|
},
|
|
props:{
|
|
text:{
|
|
type:String,
|
|
default:"暂无数据"
|
|
}
|
|
},
|
|
mounted() {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped>
|
|
.empty {
|
|
// padding-top:160px;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #8A9EAA;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
p {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
</style>
|
|
|