2022-10-01 19:56:38 +05:30
|
|
|
import {createApp} from 'vue';
|
2022-05-12 19:09:02 +05:30
|
|
|
import PullRequestMergeForm from '../components/PullRequestMergeForm.vue';
|
|
|
|
|
|
|
|
export default function initPullRequestMergeForm() {
|
|
|
|
const el = document.getElementById('pull-request-merge-form');
|
|
|
|
if (!el) return;
|
|
|
|
|
2022-10-01 19:56:38 +05:30
|
|
|
const view = createApp(PullRequestMergeForm);
|
|
|
|
view.mount(el);
|
2022-05-12 19:09:02 +05:30
|
|
|
}
|