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.
21 lines
344 B
21 lines
344 B
7 months ago
|
<template>
|
||
|
<div class="view-container">
|
||
|
<div class="banner"></div>
|
||
|
<div class="container">科学研究</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import {} from 'vue'
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.view-container {
|
||
|
height: 100vh;
|
||
|
.container {
|
||
|
width: $base-container-width;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
}
|
||
|
</style>
|