欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

位于主體中心、導航抽屜右側的v對話框組件

吉茹定2年前8瀏覽0評論

在我使用Vuetify 2的項目中,我希望對話框出現在主體的中心,特別是導航抽屜的右邊,而不是占據整個屏幕。

<template>
  <v-app>
    <v-navigation-drawer v-model="drawer" app>
      <!-- Navigation drawer content here -->
    </v-navigation-drawer>

    <v-app-bar app>
      <!-- App bar content here -->
    </v-app-bar>

    <v-main>
      <v-container fluid>
        <!-- Page content here -->

        <!-- Dialog component -->
        <v-dialog v-model="dialogVisible" max-width="500px">
          <template v-slot:activator="{ on }">
            <!-- Open dialog button -->
            <v-btn @click="dialogVisible = true" v-on="on">Open Dialog</v-btn>
          </template>

          <v-card>
            <!-- Dialog content here -->
          </v-card>
        </v-dialog>
      </v-container>
    </v-main>
  </v-app>
</template>