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

9 lines
182 B
TypeScript
Raw Normal View History

2024-01-05 16:42:50 +00:00
import { computed } from 'vue'
import { commonStore } from '@/stores'
export const useLicense = () => {
return {
isKoelPlus: computed(() => commonStore.state.koel_plus)
}
}