Vue
HTML
<div id="app">
<section style="background:
url(https://picsum.photos/200/300);">
</section>
</div>
CSS
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
section {
width: 200px;
height: 300px;
}
Vue
new Vue({
el: "#app",
data: {
}
})