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.
31 lines
662 B
31 lines
662 B
<!--
|
|
* @Author: wally
|
|
* @email: 18603454788@163.com
|
|
* @Date: 2021-01-14 12:20:06
|
|
* @LastEditors: wally
|
|
* @LastEditTime: 2021-01-14 12:29:14
|
|
-->
|
|
<template>
|
|
<div class="inner" style="margin-top: 50px; margin-bottom: 100px">
|
|
<left-nav style="float: left" />
|
|
<div style="width: 83%; float: right">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import LeftNav from './components/LeftNav.vue';
|
|
export default {
|
|
name: 'Challenge',
|
|
components: { LeftNav },
|
|
data() {
|
|
return {
|
|
title: '创新挑战',
|
|
arr: [{ name: '创新挑战', url: '' }],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="stylus"></style>
|
|
|