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