diff --git a/components/aigc/chat/NewSessionScreen.vue b/components/aigc/chat/NewSessionScreen.vue index 2ad809b..220737f 100644 --- a/components/aigc/chat/NewSessionScreen.vue +++ b/components/aigc/chat/NewSessionScreen.vue @@ -4,7 +4,13 @@ import {useLazyAsyncData} from '#app' const loginState = useLoginState() -const props = defineProps() +const props = defineProps({ + nonBack: { + type: Boolean, + default: false, + }, +}) +// noinspection JSUnusedLocalSymbols const emit = defineEmits({ select: (assistant: Assistant | null) => true, cancel: () => true, @@ -58,6 +64,7 @@ const {
+