27 lines
546 B
JavaScript
27 lines
546 B
JavaScript
|
import Vue from 'vue';
|
||
|
import RevokeButton from './components/revoke_button.vue';
|
||
|
|
||
|
export default () => {
|
||
|
const containers = document.querySelectorAll('.js-deploy-token-revoke-button');
|
||
|
|
||
|
if (!containers.length) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return containers.forEach((el) => {
|
||
|
const { token, revokePath, buttonClass } = el.dataset;
|
||
|
|
||
|
return new Vue({
|
||
|
el,
|
||
|
provide: {
|
||
|
token: JSON.parse(token),
|
||
|
revokePath,
|
||
|
buttonClass,
|
||
|
},
|
||
|
render(h) {
|
||
|
return h(RevokeButton);
|
||
|
},
|
||
|
});
|
||
|
});
|
||
|
};
|