vuetify使ってテキストサイズの変更
ヘッダーに新しいコンポを追加
新しく日付をヘッダーに追加
<v-row>
Octover 20,14:40
</v-row>
が、ヘッダーからはみ出る、、、
追加したのはv-app-varのタグの中なので、
<v-app-bar ●これ
app
color="primary"
dark
src="mountains.jpg"
prominent
>
<template v-slot:img="{ props }">
<v-img
v-bind="props"
gradient="to top right, rgba(19,84,122,.5), rgba(128,208,199,.8)"
></v-img>
</template>
<v-container class="pa-0">
<!-- ヘッダー上側のアイテム -->
<v-row>
<v-app-bar-nav-icon @click="drawer = !drawer"></v-app-bar-nav-icon>
<v-spacer></v-spacer>
<!-- 検索窓 小 -->
<search/>
</v-row>
<!-- ヘッダー下側のアイテム -->
<v-row>
<v-toolbar-title class=" ml-4">
Vuetify Todo
</v-toolbar-title>
</v-row>
<v-row >●これ
Octover 20,14:40
</v-row>
</v-container>
</v-app-bar>
公式サイトのUIコンポのAPPーBARを見る
APIを見る
https://vuetifyjs.com/en/components/app-bars/
prominentは
Increases the height of the toolbar content to 128px.
なので、128pxっぽいちょっと高さを変えればよさそう
hightは
Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. prominent, dense, extended, etc.
なので、prominentは設定できるっぽい
文字のサイズは
text and typographyによると
These classes can be applied to all breakpoints from xs to xl. When using a base class, .text-{value}, it is inferred to be .text-xs-${value}.
なので、クラスをつけてtext-〇〇で対処するっぽい
〇〇は一覧がある
<v-app-bar
app
color="primary"
dark
src="mountains.jpg"
prominent
height="170" ●追加
>
<template v-slot:img="{ props }">
<v-img
v-bind="props"
gradient="to top right, rgba(19,84,122,.5), rgba(128,208,199,.8)"
></v-img>
</template>
<v-container class="pa-0">
<!-- ヘッダー上側のアイテム -->
<v-row>
<v-app-bar-nav-icon @click="drawer = !drawer"></v-app-bar-nav-icon>
<v-spacer></v-spacer>
<!-- 検索窓 小 -->
<search/>
</v-row>
<!-- ヘッダー下側のアイテム -->
<v-row>
<v-toolbar-title class="text-h4 ml-4"> ●テキストサイズをh4に
Vuetify Todo
</v-toolbar-title>
</v-row>
<v-row >
<div class="text-subtitle-1"> ●テキストサイズをサブタイトルの大きさに
Octover 20,14:40
</div>
</v-row>
</v-container>
</v-app-bar>
これを別のコンポにしていくー小コンポ作って移動
components>Tools>LiveDate.vueを作成
<template>
<div class="text-subtitle-1 ml-4"> ●移動
Octover 20,14:40
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
親コンポで読み込み。もともとapp.vueにいれたので、
......いろいろ
<v-row >
<live-date-time/> ●元あった所に小コンポ反映
</v-row>
</v-container>
<script>
export default {
components:{
'search':require('@/components/Tools/Search.vue').default,
'live-date-time':require('@/components/Tools/LiveDate.vue').default, ●小コンポ読み込み
'snackbar':require('@/components/Shared/Snackbar.vue').default
Author And Source
この問題について(vuetify使ってテキストサイズの変更), 我々は、より多くの情報をここで見つけました https://qiita.com/shoiizuka/items/6f4fa25b23c6f830b3fb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .