Skip to content

Commit

Permalink
fix(VDataTablePagination): fix v-select style
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Nov 22, 2022
1 parent b614d3e commit 6ea59fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/table/src/VDataTablePagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import {computed, PropType, ref, toRefs, watch} from 'vue';
import Pagination from '@gits-id/pagination';
import VSelect from '@gits-id/select';
import '@gits-id/select/dist/style.css';
type PaginationProps = InstanceType<typeof Pagination>['$props'];
Expand Down Expand Up @@ -167,7 +168,9 @@ watch(
:items-per-page="itemsPerPage"
v-bind="pagination"
>
<template v-for="(_, name) in $slots" v-slot:[name]><slot :name="name" /></template>
<template v-for="(_, name) in $slots" v-slot:[name]
><slot :name="name"
/></template>
</Pagination>
</div>
</div>
Expand Down

0 comments on commit 6ea59fd

Please sign in to comment.