Skip to content

Commit

Permalink
refactor: change imports of vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Merieli committed Dec 11, 2024
1 parent a2c8578 commit bc392dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/components/ui/index-table/IndexTable.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<script setup lang="ts" generic="T extends object">
import { ref, watch } from 'vue';
import { ref, watch, onMounted, onUnmounted } from 'vue';
import Card from '../card/Card.vue';
import SkeletonTable from '../skeleton-table/SkeletonTable.vue';
import IndexTableActions from './actions/IndexTableActions.vue';
import IndexTableList from './list/IndexTableList.vue';
import IndexTablePaginationItem from './actions/IndexTablePaginationItem.vue';
import IndexTableTabs from './tabs/IndexTableTabs.vue';
import { onMounted, onUnmounted } from 'vue';
import type { IndexTableEmits, IndexTableProps, IndexTableSlots, KeyLabelDefault } from './types';
import { defaultPropEmptyResultDisplay } from './list/defaultPropEmptyResultDisplay';
import { widthLessThan } from '#ds/services/MobileDetector.js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import IconButton from '#ds/components/ui/icon-button/IconButton.vue';
import { computed } from 'vue';
import IconButton from '#ds/components/ui/icon-button/IconButton.vue';
import type { IndexTablePaginationItemEmits, IndexTablePaginationItemProps } from '../types';
const props = withDefaults(defineProps<IndexTablePaginationItemProps>(), {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/index-table/list/IndexTableList.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<script setup lang="ts" generic="T extends object">
import { watch } from 'vue';
import Table from '#ds/components/admin/table/Table.vue';
import TableBody from '#ds/components/admin/table/TableBody.vue';
import TableCell from '#ds/components/admin/table/TableCell.vue';
import TableHeadCell from '#ds/components/admin/table/TableHeadCell.vue';
import TableRow from '#ds/components/admin/table/TableRow.vue';
import FormCheckbox from '#ds/components/ui/form-checkbox/FormCheckbox.vue';
import { watch } from 'vue';
import IndexTableEmptyMessage from './IndexTableEmptyMessage.vue';
import { useIndexTableList } from '../composables/useIndexTableList';
import type { IndexTableListEmits, IndexTableListProps, IndexTableListSlots } from '../types';
Expand Down

0 comments on commit bc392dd

Please sign in to comment.