반응형
<div style="display: flex">
<v-card
v-for="item in itemlist.slice(0, 5)"
:key="item.itemId"
height="350px"
style="margin: 8px; width: 20%"
>
<v-card-title v-text="item.name"></v-card-title>
<v-card-subtitle v-text="item.description"></v-card-subtitle>
</v-card>
</div>
사실 그냥 flex 쓰면 된다...
반응형
'개발 > Vue.js' 카테고리의 다른 글
[Vue.js & nginx] 정적 Vue 프로젝트를 nginx에서 돌릴 때 발생하는 404 에러 해결 방법 / Vue nginx 설정 (0) | 2021.08.23 |
---|---|
[Vue.js] Axios로 Post 하는 방법 (0) | 2021.06.18 |
[Vue.js] Vuetify style 적용 안 될 때 (0) | 2021.06.05 |