diff --git a/src/components/settings/VoiceInputSettings.vue b/src/components/settings/VoiceInputSettings.vue index e891ffe..e6f1df4 100644 --- a/src/components/settings/VoiceInputSettings.vue +++ b/src/components/settings/VoiceInputSettings.vue @@ -8,6 +8,13 @@ @change="updateSettings" /> +
+ 自动语音播报 + +
diff --git a/src/store/settings.js b/src/store/settings.js index b0440d8..228af05 100644 --- a/src/store/settings.js +++ b/src/store/settings.js @@ -29,9 +29,11 @@ export const useSettingsStore = defineStore('settings', { theme: 'default', // 动画效果开关 animationsEnabled: true, - // 语音输入设置 + // 语音设置 voiceInputSettings: { sendDirectly: true, // 语音转文字后直接发送 + // 自动文字语音播报 + autoTTS: false, }, }),