v-select of vuetify 구성 요소의 텍스트를 가운데 정렬하는 방법
Vuetify 셀렉트 컴포넌트를 사용하고 있습니다.vuetify 시 드롭다운과 함께 텍스트를 중앙에 정렬하려면 어떻게 해야 합니까?
text-md-center에서 시도했지만 작동하지 않습니다.
<v-select
:items="['Lagna Kundali']"
label="Rasi" solo
v-model="firstKundali"
class="text-md-center"
>
다음 css 스타일을 추가하여 수정할 수 있습니다.
.v-select__selection {
width: 100%;
justify-content: center;
}
vuetify slot: selection(2.3.10에서 테스트 완료)을 사용할 수 있으므로 CSS를 변경할 필요가 없습니다.깔끔하고 간단:
<v-select
:items="items"
outlined
:item-text="label"
item-value="value"
>
<template v-slot:selection="{ item }">
<span class="d-flex justify-center" style="width: 100%;">
{{ item.label }}
</span>
</template>
</v-select>
vuetify v2 이전 버전에 유효합니다.
그리드 시스템에 컴포넌트를 감습니다.에서v-layout
지정할 수 있는 컴포넌트justify-center
예를 들어주세요.
<div id="app">
<v-app id="inspire">
<v-container>
<v-layout row wrap justify-center>
<v-flex xs6>
<v-select></v-select>
</v-flex>
</v-layout>
</v-container>
</v-app>
</div>
언급URL : https://stackoverflow.com/questions/54536464/how-to-center-align-the-text-of-v-select-of-vuetify-components
'programing' 카테고리의 다른 글
Vue-google-map 자동 완성 양방향 바인딩이 작동하지 않음 (0) | 2022.08.03 |
---|---|
VueX/Vue다른 파일로부터의 콜 변환 (0) | 2022.08.03 |
중첩된 형식 - vue (0) | 2022.08.01 |
디스크립터를 읽기 위한 논블로킹콜 (0) | 2022.08.01 |
메서드 이름 출력에 사용할 수 있는 매크로/키워드? (0) | 2022.08.01 |