mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-28 01:53:53 +08:00
update: mobile 编辑源和语速音调页面样式调整
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { defineStore } from 'pinia'
|
||||
|
||||
export const useSpeedPitch = defineStore('speedPitch', () => {
|
||||
const speedPitch = ref({
|
||||
ttsVolume: 0,
|
||||
ttsRate: 0,
|
||||
ttsPitch: 0,
|
||||
})
|
||||
|
||||
const updateSpeedPitch = (val: typeof speedPitch.value) => {
|
||||
speedPitch.value = val
|
||||
}
|
||||
|
||||
return {
|
||||
speedPitch,
|
||||
updateSpeedPitch,
|
||||
}
|
||||
}, {
|
||||
persist: {
|
||||
key: 'speedPitch',
|
||||
serializer: {
|
||||
serialize: state => JSON.stringify(state.speedPitch),
|
||||
deserialize: value => ({ speedPitch: JSON.parse(value) }),
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user