debian-mirror-gitlab/app/assets/javascripts/pages/projects/jobs/index/index.js
2021-04-17 20:07:23 +05:30

17 lines
390 B
JavaScript

import Vue from 'vue';
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';
const remainingTimeElements = document.querySelectorAll('.js-remaining-time');
remainingTimeElements.forEach(
(el) =>
new Vue({
el,
render(h) {
return h(GlCountdown, {
props: {
endDateString: el.dateTime,
},
});
},
}),
);