Просмотр исходного кода

chore(sfc-playground): use type defineEmit

Evan You 5 лет назад
Родитель
Сommit
2793bc0918
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/sfc-playground/src/codemirror/CodeMirror.vue

+ 1 - 1
packages/sfc-playground/src/codemirror/CodeMirror.vue

@@ -24,7 +24,7 @@ const props = defineProps({
   }
   }
 })
 })
 
 
-const emit = defineEmit(['change'])
+const emit = defineEmit<(e: 'change', value: string) => void>()
 
 
 onMounted(() => {
 onMounted(() => {
   const addonOptions = {
   const addonOptions = {