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.
softwareengineering/CaigouIndex.vue

36 lines
473 B

<template>
<div class="allpage">
<div class="platform">
</div>
</div>
</template>
<script>
// 张梅写于2022年11月22日
export default{
components: {
},
setup() {
}
}
</script>
<style scoped>
.allpage{
height: 60vh;
width: 100%;
}
.platform{
margin-left: 20vw;
height: 60vh;
width: 51vw;
background-color: rgba(118,234,211, 0.5);
margin-top: 10vh;
}
</style>