Skip to content

Commit

Permalink
fix: 更改文件名
Browse files Browse the repository at this point in the history
  • Loading branch information
moyuand committed Nov 28, 2024
1 parent 460060a commit 29e5f7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/Button/Button.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, it, expect, test } from 'vitest'
import { mount } from '@vue/test-utils'
import Button from './Button.vue'
import Icon from '../icon/Icon.vue';
import Icon from '../Icon/Icon.vue';
import ButtonGroup from './ButtonGroup.vue';
import type { ButtonSize } from './types';

Expand Down
2 changes: 1 addition & 1 deletion packages/components/Button/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import type { ButtonProps, ButtonEmits, ButtonInstance } from './types';
import { ref, computed, inject } from 'vue';
import { throttle } from 'lodash-es'
import MyIcon from '../icon/Icon.vue';
import MyIcon from '../Icon/Icon.vue';
import {BUTTON_GROUP_CTX_KEY} from './contants'
defineOptions({
Expand Down
2 changes: 1 addition & 1 deletion packages/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './Button'
export * from './icon'
export * from './Icon'

0 comments on commit 29e5f7f

Please sign in to comment.