mirror of https://github.com/go-gitea/gitea.git
11 lines
306 B
JavaScript
11 lines
306 B
JavaScript
import {createApp} from 'vue';
|
|
import DiffCommitSelector from '../components/DiffCommitSelector.vue';
|
|
|
|
export function initDiffCommitSelect() {
|
|
const el = document.getElementById('diff-commit-select');
|
|
if (!el) return;
|
|
|
|
const commitSelect = createApp(DiffCommitSelector);
|
|
commitSelect.mount(el);
|
|
}
|