You cannot 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
256 B
Vue
21 lines
256 B
Vue
|
4 weeks ago
|
<script setup>
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="header">
|
||
|
|
<img src="@/assets/img/tc-top.png" alt="">
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
.header{
|
||
|
|
height: 618px;
|
||
|
|
img{
|
||
|
|
width:100%;
|
||
|
|
height: 100%;
|
||
|
|
object-fit: cover;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|