mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
26 lines
405 B
Vue
26 lines
405 B
Vue
<template>
|
|
<div class="header">
|
|
<img src="../assets/logo.png">
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
msg: 'Hello vue'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
.header{
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
.header img{
|
|
width: 50%;
|
|
margin: 30px auto 0;
|
|
display: block;
|
|
}
|
|
</style>
|