topTitle.vue
611 Bytes
<template>
<div class="container">
</div>
</template>
<script>
export default {
data() {
return {
}
},
mounted() {
},
components: {
},
methods:{
}
}
</script>
<style scoped>
.container {
/* margin-top: 17.5px; */
width: 100%;
height: 100%;
background-image: url('../assets/topTitle.png');
background-size: cover;
background-repeat: no-repeat;
}
img {
width: 100%;
height: 100%;
}
</style>