40 lines
622 B
Vue
40 lines
622 B
Vue
<template>
|
|
<div class="box">
|
|
<div class="row-box">
|
|
<img class="logo" :src="imgUrl" />
|
|
<span class="text">北泽阀门</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import imgUrl from '@/assets/logo/logo.png'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.box {
|
|
position: absolute;
|
|
left: 1%;
|
|
top: 10px;
|
|
}
|
|
|
|
.row-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.text {
|
|
margin-left: 10px;
|
|
text-align: center;
|
|
/* line-height: 25px; */
|
|
font-size: 24px;
|
|
}
|
|
</style>
|