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

index.js « feature_highlight « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a8b211b3c5cc34032bce413a2c392cceb8f6837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import Vue from 'vue';

const init = async () => {
  const el = document.querySelector('.js-feature-highlight');

  if (!el) {
    return null;
  }

  const { autoDevopsHelpPath, highlight: highlightId, dismissEndpoint } = el.dataset;
  const { default: FeatureHighlight } = await import(
    /* webpackChunkName: 'feature_highlight' */ './feature_highlight_popover.vue'
  );

  return new Vue({
    el,
    render: (h) =>
      h(FeatureHighlight, {
        props: {
          autoDevopsHelpPath,
          highlightId,
          dismissEndpoint,
        },
      }),
  });
};

export default init;