Files
moeka-project/stores/audio.ts
T
Neko Ayaka d9ae0aae38 init: init
Signed-off-by: Neko Ayaka <neko@ayaka.moe>
2024-12-02 00:31:36 +08:00

10 lines
183 B
TypeScript

import { defineStore } from 'pinia'
export const useAudioContext = defineStore('AudioContext', () => {
const audioContext = new AudioContext()
return {
audioContext,
}
})