27 lines
370 B
Vue
27 lines
370 B
Vue
<template>
|
|
<div class="fill flex-row">
|
|
<img src="/img/epic.jpeg" class="img" />
|
|
<div class="div">
|
|
<p>Hello</p>
|
|
<p>Hello</p>
|
|
<p>Hello</p>
|
|
<p>Hello</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.img {
|
|
flex: 3;
|
|
}
|
|
|
|
.div {
|
|
flex: 7;
|
|
}
|
|
</style>
|