10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
export const useAudioContext = defineStore('AudioContext', () => {
|
|
const audioContext = new AudioContext()
|
|
|
|
return {
|
|
audioContext,
|
|
}
|
|
})
|