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

fix(VDataTableFooter): filter VPaginate props #18909

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Dec 20, 2023

Description

fixes #18893

Markup:

<template>
  <v-app>
    <v-container>
      <v-data-table
        first-icon="mdi-alien"
        last-icon="mdi-alien"
        prev-icon="mdi-alien"
        next-icon="mdi-alien"
        :headers="tableHeaders"
      />

      <v-data-table
        :headers="tableHeaders"
      />
    </v-container>
  </v-app>
</template>

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

  const tableHeaders = computed(() => [
    {
      key: 'id',
      title: 'Id',
    },
    {
      key: 'name',
      title: 'Name',
    },
  ])
</script>

@MajesticPotatoe MajesticPotatoe added T: bug Functionality that does not work as intended/expected C: VDataTable VDatatable labels Dec 21, 2023
@johnleider johnleider force-pushed the master branch 2 times, most recently from f931c2e to 748056c Compare December 28, 2023 22:41
@websitevirtuoso
Copy link
Contributor

Tested. Can be merged with closed eyes.

@johnleider johnleider added this to the v3.4.x milestone Jan 8, 2024
@johnleider johnleider merged commit 60b2abd into vuetifyjs:master Jan 8, 2024
10 checks passed
@johnleider johnleider changed the title fix(VDataTable): fix send props to VPagination fix(VDataTableFooter): filter VPaginate props Jan 8, 2024
tmasrat pushed a commit to tmasrat/vuetify that referenced this pull request Jan 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VDataTable VDatatable T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.4.7] VDataTable prevIcon, nextIcon dont work
4 participants