Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 6b8ba63

Browse files
committed
chore: format
1 parent c0a1b56 commit 6b8ba63

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/views/chat/index.vue

+8-2
Original file line numberDiff line numberDiff line change
@@ -524,8 +524,14 @@ onUnmounted(() => {
524524
<NAutoComplete v-model:value="prompt" :options="searchOptions" :render-label="renderOption">
525525
<template #default="{ handleInput, handleBlur, handleFocus }">
526526
<NInput
527-
v-model:value="prompt" type="textarea" :placeholder="placeholder"
528-
:autosize="{ minRows: 1, maxRows: 2 }" @input="handleInput" @focus="handleFocus" @blur="handleBlur" @keypress="handleEnter"
527+
v-model:value="prompt"
528+
type="textarea"
529+
:placeholder="placeholder"
530+
:autosize="{ minRows: 1, maxRows: 2 }"
531+
@input="handleInput"
532+
@focus="handleFocus"
533+
@blur="handleBlur"
534+
@keypress="handleEnter"
529535
/>
530536
</template>
531537
</NAutoComplete>

0 commit comments

Comments
 (0)