mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
16 lines
541 B
TypeScript
16 lines
541 B
TypeScript
import { computed } from 'vue'
|
|
import { commonStore } from '@/stores'
|
|
|
|
export const useKoelPlus = () => {
|
|
return {
|
|
isPlus: computed(() => commonStore.state.koel_plus.active),
|
|
license: {
|
|
shortKey: commonStore.state.koel_plus.short_key,
|
|
customerName: commonStore.state.koel_plus.customer_name,
|
|
customerEmail: commonStore.state.koel_plus.customer_email,
|
|
},
|
|
checkoutUrl: computed(() =>
|
|
`https://store.koel.dev/checkout/buy/${commonStore.state.koel_plus.product_id}?embed=1&media=0&desc=0`,
|
|
),
|
|
}
|
|
}
|