summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/admin/applications/index.js
blob: 5875fd1872956bfef73ed2d1a48b5cb0e787a6ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Vue from 'vue';
import DeleteApplication from './components/delete_application.vue';

export default () => {
  const el = document.querySelector('.js-application-delete-modal');

  if (!el) return false;

  return new Vue({
    el,
    render(h) {
      return h(DeleteApplication);
    },
  });
};