koel/resources/assets/js/composables/useLicense.ts
2024-07-06 17:44:40 +02:00

8 lines
182 B
TypeScript

import { computed } from 'vue'
import { commonStore } from '@/stores'
export const useLicense = () => {
return {
isKoelPlus: computed(() => commonStore.state.koel_plus)
}
}