Files
student-h5/src/components/TitleHead.vue
2022-09-21 15:45:33 +08:00

31 lines
537 B
Vue

<template>
<div class="titleHead">
<div class="text">{{ text }}</div>
</div>
</template>
<script>
export default {
name: "TitleHead",
props: {
text: String,
},
};
</script>
<style scoped lang="scss">
.titleHead {
width: 100%;
height: 80px;
background-image: url("../assets/image/titleBg.png");
background-size: 100% 100%;
background-repeat: no-repeat;
.text {
font-size: 15px;
font-weight: 600;
color: #ffffff;
line-height: 12px;
padding-top: 33px;
margin-left: 11px;
}
}
</style>