Commit 5bfc9265 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'mw-productivity-analytics-skeleton' into 'master'

Skeleton for Productivity Analytics

See merge request gitlab-org/gitlab-ee!14183
parents 2fcf9f2a 41e1f202
<script>
export default {};
</script>
<template>
<div>Productivity Analytics app goes here</div>
</template>
import Vue from 'vue';
import ProductivityAnalyticsApp from './components/app.vue';
export default function(el) {
if (!el) {
return false;
}
return new Vue({
el,
components: {
ProductivityAnalyticsApp,
},
render(h) {
return h(ProductivityAnalyticsApp, {
props: {},
});
},
});
}
import initProductivityAnalyticsApp from 'ee/analytics/productivity_analytics';
document.addEventListener('DOMContentLoaded', () => {
const containerEl = document.getElementById('js-productivity-analytics-container');
initProductivityAnalyticsApp(containerEl);
});
- page_title _('Productivity Analytics')
-# = render 'shared/issuable/search_bar', type: :issues, show_sorting_dropdown: false
#js-productivity-analytics-container
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment