mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
14 lines
280 B
Vue
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> |