mirror of
https://github.com/xsf0105/vue3-h5-template.git
synced 2025-09-05 06:19:45 +08:00
20 lines
595 B
Vue
20 lines
595 B
Vue
<template>
|
|
<div class="header">
|
|
<img src="https://png2.cleanpng.com/sh/9f5efd7936dbbc0513a929a7809ebd10/L0KzQYm3V8E5N5pnR91yc4Pzfri0lwVmNZt4RdxqdnH2c8PwkQQudJpnitN7eT3kfrj8jPFzcqQyitdqY4SwhsbsTfp0NWZnTNdrZUHmQIq4Wck0NmkATaI7OEK8QYa6Ucg5P2I4SqI8N0OxgLBu/kisspng-vue-js-javascript-library-angularjs-react-vue-js-5b4ebe1c091993.8950282915318871320373.png" />
|
|
</div>
|
|
</template>
|
|
<style>
|
|
body{
|
|
margin: 0;
|
|
}
|
|
.header{
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
.header img{
|
|
width: 50%;
|
|
margin: 30px auto 0;
|
|
display: block;
|
|
}
|
|
</style>
|