42 lines
729 B
Vue
42 lines
729 B
Vue
<!--
|
|
* @FilePath: Name.vue
|
|
* @Author: zz
|
|
* @Date: 2023-10-26 14:54:46
|
|
* @LastEditors: Please set LastEditors
|
|
* @LastEditTime: 2023-11-14 14:21:52
|
|
* @Descripttion:
|
|
-->
|
|
<template>
|
|
<div class="rect"></div>
|
|
<div class="name">{{ name }}</div>
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
const prop = defineProps({
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
.rect {
|
|
position: absolute;
|
|
width: 223px;
|
|
height: 75px;
|
|
background-image: url('./img/u506.svg');
|
|
left: 40%;
|
|
top: 343px;
|
|
}
|
|
.name{
|
|
position: absolute;
|
|
width: 260px;
|
|
top: 335px;
|
|
left: 38%;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-size: 36px;
|
|
color: #CFEBEB;
|
|
}
|
|
</style> |