16 lines
354 B
Vue
16 lines
354 B
Vue
|
<template>
|
||
|
<div class="custom-page" :style="`background-image: url(${getAssetsFile('images/input/demand-overview.png')})`"></div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { getAssetsFile } from '@/utils';
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.custom-page {
|
||
|
height: calc(100vh - 150px);
|
||
|
background-size: cover;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
</style>
|