@@ -1,5 +1,9 @@
<template>
- <div>right</div>
+ <div class="box">
+ <div class="avatarsBox">
+ 132
+ </div>
</template>
<script setup>
@@ -7,5 +11,12 @@ defineOptions({ name: 'resume-right'})
</script>
<style scoped lang="scss">
-
+.box {
+ width: 100%;
+ background-color: #fff;
+ padding: 12px;
+ .avatarsBox {
+ height: 50px;
+ }
+}
</style>