gpt4 book ai didi

vue.js - 如何在 vuetify 中水平对齐项目

转载 作者:行者123 更新时间:2023-12-03 06:47:30 25 4
gpt4 key购买 nike

我已经被困了几个小时只是为了在 v-card 中垂直和水平对齐一个项目。下面的这张图片是我目前拥有的,我只需要垂直对齐项目,但我不知道如何。谁能帮我?提前致谢
enter image description here
我的代码:

<div class="pt-3">
<v-card class="pa-3">
<v-row align="center" justify="center" v-bind:style="{ height: deviceHeight * 0.6 + 'px',}">
<v-col class="fill-height" height="500">
<v-card class="text-center grey" height="100%">
<div align="center" justify="center">
<v-icon>mdi-camera</v-icon>
<h3>Upload</h3>
</div>
</v-card>
</v-col>
</v-row>
</v-card>
</div>

computed: {
deviceHeight(){
return this.$vuetify.breakpoint.height;
},
deviceWidth(){
return this.$vuetify.breakpoint.width;
},
},

最佳答案

alignjustify props 用于一些 Vuetify 组件,但它们不适用于原生 HTML div .而是在 v-card 上使用适当的类...

     <v-card class="text-center grey d-flex flex-column align-center justify-center" height="100%">
<div>
<v-icon>mdi-camera</v-icon>
<h3>Upload</h3>
</div>
</v-card>
Demo

关于vue.js - 如何在 vuetify 中水平对齐项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62990130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com