Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(VFab): add new component #18083

Merged
merged 12 commits into from
Feb 29, 2024
Merged

feat(VFab): add new component #18083

merged 12 commits into from
Feb 29, 2024

Conversation

johnleider
Copy link
Member

@johnleider johnleider commented Aug 17, 2023

Motivation and Context

fixes #1852
fixes #2553
fixes #7407

Markup:

<template>
  <v-app>
    <v-main class="bg-grey">
      <div class="ma-4 pa-4">
        hi
        <v-btn text="Click" @click="model = !model" />
        <!-- <v-fab icon="$vuetify" text="Compose" size="x-small" />
        <v-fab icon="$vuetify" text="Compose" size="small" />
        <v-fab icon="$vuetify" text="Compose" />
        <v-fab icon="$vuetify" text="Compose" size="large" />
        <v-fab icon="$vuetify" text="Compose" size="x-large" /> -->
      </div>
    </v-main>

    <v-bottom-navigation />

    <!-- <v-navigation-drawer
      permanent
      location="left"
    />
    <v-fab
      icon="
      $vuetify"
      color="blue"
      location="bottom"
      app
    /> -->
    <v-fab
      v-model="model"
      icon="$vuetify"
      color="blue"
      app
    />
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const model = ref(true)
</script>

@johnleider johnleider self-assigned this Aug 17, 2023
@MajesticPotatoe MajesticPotatoe added T: feature A new feature C: New Component This issue would need a new component to be developed. labels Sep 11, 2023
@MajesticPotatoe MajesticPotatoe force-pushed the master branch 3 times, most recently from 7ce7b02 to 1adfeaa Compare October 12, 2023 13:13
@MajesticPotatoe MajesticPotatoe force-pushed the master branch 2 times, most recently from bb07313 to e5c1c07 Compare October 20, 2023 01:52
@johnleider johnleider force-pushed the master branch 8 times, most recently from 7cd11a6 to d0765f1 Compare December 17, 2023 01:32
@johnleider johnleider force-pushed the master branch 2 times, most recently from f931c2e to 748056c Compare December 28, 2023 22:41
@johnleider johnleider force-pushed the feat/v3-fab branch 2 times, most recently from 02f799e to ec2ce7f Compare January 10, 2024 21:27
@KaelWD KaelWD force-pushed the master branch 3 times, most recently from cd170f8 to 98e57dc Compare February 14, 2024 06:14
@johnleider johnleider changed the base branch from master to dev February 14, 2024 21:01
@johnleider johnleider changed the base branch from dev to master February 14, 2024 21:03
@johnleider johnleider force-pushed the feat/v3-fab branch 2 times, most recently from b1c7135 to e8d0862 Compare February 20, 2024 15:36
@johnleider johnleider marked this pull request as ready for review February 29, 2024 19:42
@johnleider johnleider merged commit 86d0c32 into master Feb 29, 2024
17 of 18 checks passed
@johnleider johnleider deleted the feat/v3-fab branch February 29, 2024 19:42
VIXI0 pushed a commit to VIXI0/vuetify that referenced this pull request Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: New Component This issue would need a new component to be developed. T: feature A new feature
Projects
None yet
2 participants