您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

use-is-chat-mode.ts 205B

1234567
  1. import { useStore as useAppStore } from '@/app/components/app/store'
  2. export const useIsChatMode = () => {
  3. const appDetail = useAppStore(s => s.appDetail)
  4. return appDetail?.mode === 'advanced-chat'
  5. }