mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
15 lines
352 B
TypeScript
15 lines
352 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 useiTunes = toRef(commonStore.state, 'useiTunes')
|
||
|
|
||
|
return {
|
||
|
useLastfm,
|
||
|
useYouTube,
|
||
|
useiTunes
|
||
|
}
|
||
|
}
|