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.
27 lines
373 B
27 lines
373 B
<template>
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'NewPlatform',
|
|
data() {
|
|
return {
|
|
str: '创新平台界面',
|
|
list: [],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.wrap {
|
|
width: 1260px;
|
|
min-height: 1037px;
|
|
margin: 80px auto 28px auto;
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
}
|
|
</style>
|
|
|