We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc60edf commit df5c3beCopy full SHA for df5c3be
src/views/ai/image/dall3/index.vue
@@ -163,6 +163,8 @@ selectImageSize.value = imageSizeList.value[0]
163
164
// 定义 Props
165
const props = defineProps({})
166
+// 定义 emits
167
+const emits = defineEmits(['onDrawStart', 'onDrawComplete'])
168
169
/**
170
* 热词 - click
@@ -225,6 +227,8 @@ const handlerGenerateImage = async () => {
225
227
} as ImageDallReqVO
226
228
// 发送请求
229
await ImageApi.dall(form)
230
+ // 回调
231
+ emits('onDrawComplete', selectModel.value.key)
232
}
233
234
</script>
0 commit comments