mirror of
https://github.com/koel/koel
synced 2024-12-25 12:03:06 +00:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import { computed } from 'vue'
|
|
import { commonStore } from '@/stores'
|
|
|
|
export const useLicense = () => {
|
|
return {
|
|
isKoelPlus: computed(() => commonStore.state.koel_plus)
|
|
}
|
|
}
|