3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Vuetifyのドロワーでメニューがずれないようにする

Last updated at Posted at 2022-03-24

#はじめに
Vuetifyで用意されているナビゲーションドロワーのコンポーネントを使用すると、スクロールしたときにドロワー内のメニューもスクロールされてしまい、表示されなくなります。

これを防ぐためにCSSを追加し、メニューをドロワー内で固定しました。

#コード

src/App.vue
<template>
    <v-navigation-drawer
      v-model="drawer"
      absolute
      bottom
      temporary
      style="position:fixed;" // 追加
    >
      <v-list
        nav
        dense
      >
        <v-list-item-group
          v-model="group"
          active-class="deep-purple--text text--accent-4"
        >
          <v-list-item>
            <v-list-item-title>Foo</v-list-item-title>
          </v-list-item>

          <v-list-item>
            <v-list-item-title>Bar</v-list-item-title>
          </v-list-item>

          <v-list-item>
            <v-list-item-title>Fizz</v-list-item-title>
          </v-list-item>

          <v-list-item>
            <v-list-item-title>Buzz</v-list-item-title>
          </v-list-item>
        </v-list-item-group>
      </v-list>
    </v-navigation-drawer>
</template>

v-navigation-drawerにstyle="position:fixed;"を追加するだけでメニューが固定されました。

#参考サイト
https://webdesignday.jp/inspiration/technique/css/4166/

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?