diff --git a/components.d.ts b/components.d.ts index 13211ff4..0d286572 100644 --- a/components.d.ts +++ b/components.d.ts @@ -57,5 +57,6 @@ declare module 'vue' { Word: typeof import('./src/components/Word.vue')['default'] WordItem: typeof import('./src/components/WordItem.vue')['default'] WordList: typeof import('./src/components/WordList.vue')['default'] + WordListModal: typeof import('./src/components/WordListModal.vue')['default'] } } diff --git a/src/App.vue b/src/App.vue index 341dd539..82111a1a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -59,7 +59,7 @@ useEventListener('keyup', (e: KeyboardEvent) => { - \ No newline at end of file diff --git a/src/components/Toolbar/FeedbackModal.vue b/src/components/Toolbar/FeedbackModal.vue index aea9ef3d..08a6828a 100644 --- a/src/components/Toolbar/FeedbackModal.vue +++ b/src/components/Toolbar/FeedbackModal.vue @@ -42,7 +42,7 @@ const emit = defineEmits([ + + diff --git a/src/utils/eventBus.ts b/src/utils/eventBus.ts index fc3b7486..f63213c0 100644 --- a/src/utils/eventBus.ts +++ b/src/utils/eventBus.ts @@ -4,6 +4,7 @@ export const emitter = mitt() export const EventKey = { resetWord: 'resetWord', openStatModal: 'openStatModal', + openWordListModal: 'openWordListModal', closeOther: 'closeOther', keydown: 'keydown', keyup: 'keyup',