12 lines
216 B
Vue
12 lines
216 B
Vue
<template>
|
|
<div class="home-full-bg"></div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.home-full-bg {
|
|
width: 100%;
|
|
height: 90vh;
|
|
background: url('@/assets/images/index.jpg') center center / 100% 100% no-repeat;
|
|
}
|
|
</style>
|