Files
web/components/Background.vue
timothypidashev b16dd09fbd update
2021-07-15 04:19:15 +00:00

14 lines
280 B
Vue

<template>
<div>
<div class="backgroundImage" :style="{ backgroundImage: `url(${backgroundImagePath})` }">
</div>
</template>
<script>
import backgroundImagePath from '~/assets/background.jpg'
export default {
data() {
return { backgroundImagePath }
}
}
</script>