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.

30 lines
472 B

5 years ago
<template>
<div>
<sen-nav />
<div class="inner dev-box">平台建设中...</div>
5 years ago
</div>
</template>
<script>
import SenNav from './components/SenNav.vue';
export default {
name: 'Develop',
components: { SenNav },
data() {
return {
str: '这是资源开发利用平台',
list: [],
};
},
};
</script>
<style lang="stylus" scoped>
.dev-box {
height: 600px;
line-height: 600px;
text-align: center;
font-size: 50px;
}
</style>