mirror of
https://github.com/koel/koel
synced 2024-11-28 23:10:27 +00:00
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import { toRef } from 'vue'
|
|
import { commonStore } from '@/stores'
|
|
|
|
export const useThirdPartyServices = () => {
|
|
const useLastfm = toRef(commonStore.state, 'useLastfm')
|
|
const useYouTube = toRef(commonStore.state, 'useYouTube')
|
|
const useAppleMusic = toRef(commonStore.state, 'useiTunes')
|
|
|
|
return {
|
|
useLastfm,
|
|
useYouTube,
|
|
useAppleMusic
|
|
}
|
|
}
|