Skip to content

Commit

Permalink
chore: fix warning, merge imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tewshi committed Oct 17, 2023
1 parent 9199892 commit 2d4af46
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions src/components/tabs/tab/Tab.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { type ComponentMountingOptions, mount } from '@vue/test-utils';
import {
type ComponentMountingOptions,
RouterLinkStub,
mount,
} from '@vue/test-utils';
import { describe, expect, it } from 'vitest';
import { RouterLinkStub } from '@vue/test-utils';
import Tab from '@/components/tabs/tab/Tab.vue';

const createWrapper = (options?: ComponentMountingOptions<typeof Tab>) =>
mount(Tab, {
...options,
Expand Down
6 changes: 3 additions & 3 deletions src/components/tabs/tab/Tab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ const emit = defineEmits<{
}>();
const slots = defineSlots<{
default?(): any;
prepend?(): any;
append?(): any;
default?(props?: object): any;
prepend?(props?: object): any;
append?(props?: object): any;
}>();
const { target, grow, active, disabled, vertical, align, tabValue } =
Expand Down

0 comments on commit 2d4af46

Please sign in to comment.