rt-sim-training-client/src/views/system/iscsSystem/index.vue

40 lines
576 B
Vue
Raw Normal View History

<template>
<div class="iscs-system-box">
<top-nav />
<div class="content-box">
1111
</div>
<bottom />
</div>
</template>
<script>
import TopNav from './nav.vue';
import bottom from './bottom.vue';
export default {
components: {
TopNav,
bottom
},
data() {
return {
mes: '1111'
};
}
};
</script>
<style lang="scss" scoped>
.iscs-system-box{
position: relative;
height: 100%;
}
.content-box{
width: 100%;
height: 100%;
padding: 95px 0;
background: green;
}
</style>