14 lines
202 B
Vue
14 lines
202 B
Vue
|
<template>
|
||
|
<div class="rightPage">右边</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts"></script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.rightPage {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: #0c1e35;
|
||
|
}
|
||
|
</style>
|