Fix type in emit
This commit is contained in:
parent
079595b57d
commit
40cba0f036
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
|
@ -27,7 +27,7 @@ import { ref } from 'vue'
|
||||||
import { useDocumentStore } from '../store'
|
import { useDocumentStore } from '../store'
|
||||||
import { useI18n } from '../../../shared/i18n'
|
import { useI18n } from '../../../shared/i18n'
|
||||||
|
|
||||||
const emit = defineEmits<{ uploaded: [docId: number] }>()
|
const emit = defineEmits<{ uploaded: [docId: string] }>()
|
||||||
|
|
||||||
const store = useDocumentStore()
|
const store = useDocumentStore()
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue