You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo-diff-commitselect.js 306B

12345678910
  1. import {createApp} from 'vue';
  2. import DiffCommitSelector from '../components/DiffCommitSelector.vue';
  3. export function initDiffCommitSelect() {
  4. const el = document.getElementById('diff-commit-select');
  5. if (!el) return;
  6. const commitSelect = createApp(DiffCommitSelector);
  7. commitSelect.mount(el);
  8. }