headerCommon.vue
357 Bytes
<template>
<div class="headercommon">
</div>
</template>
<script>
export default {
name: 'HelloWorld',
data() {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
<style scoped>
.headercommon {
width: 100%;
height: 77px;
/*background: url("../assets/img/headerbg.svg");*/
background: #f00;
}
</style>