koel/resources/assets/js/composables/useThirdPartyServices.ts

15 lines
352 B
TypeScript
Raw Normal View History

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
}
}