forked from TALL/check-work
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.
20 lines
284 B
20 lines
284 B
|
5 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<sen-nav />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import SenNav from './components/SenNav.vue';
|
||
|
|
export default {
|
||
|
|
name: 'Develop',
|
||
|
|
components: { SenNav },
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
str: '这是资源开发利用平台',
|
||
|
|
list: [],
|
||
|
|
};
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|