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.
34 lines
457 B
34 lines
457 B
<template>
|
|
<div class='developing'>
|
|
<p>功能开发中...</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'InDevelopment',
|
|
components: {
|
|
},
|
|
mounted() {
|
|
console.log(this.$route)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped>
|
|
.developing {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
z-index: 6;
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
p {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
|