Welcome to mirror list, hosted at ThFree Co, Russian Federation.

is_ee.js « mixins « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e00d93ef1870efbbbd2efce8b60156bd22f8b2b (plain)
1
2
3
4
5
6
7
8
9
10
import Vue from 'vue';
import { isEE } from '~/lib/utils/common_utils';

Vue.mixin({
  computed: {
    isEE() {
      return isEE();
    },
  },
});