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

index.js « access_tokens « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bdb2940956f27441234f61f6a860b766c5367d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Vue from 'vue';
import ExpiresAtField from './components/expires_at_field.vue';

const initExpiresAtField = () => {
  // eslint-disable-next-line no-new
  new Vue({
    el: document.querySelector('.js-access-tokens-expires-at'),
    components: { ExpiresAtField },
  });
};

export default initExpiresAtField;