29 lines
600 B
JavaScript
29 lines
600 B
JavaScript
|
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;
|