28 lines
554 B
Vue
28 lines
554 B
Vue
<script>
|
|
import { mapGetters } from 'vuex';
|
|
export default {
|
|
props: {
|
|
featureKey: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
isFeatureEnabledonAccount: 'accounts/isFeatureEnabledonAccount',
|
|
accountId: 'getCurrentAccountId',
|
|
}),
|
|
isFeatureEnabled() {
|
|
return this.isFeatureEnabledonAccount(this.accountId, this.featureKey);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<!-- eslint-disable-next-line vue/no-root-v-if -->
|
|
<template>
|
|
<div v-if="isFeatureEnabled">
|
|
<slot />
|
|
</div>
|
|
</template>
|