Files
Atay-Makhzan/web_src/js/features/repo-diff-filetree.js
T

18 lines
529 B
JavaScript
Raw Normal View History

2022-10-01 16:26:38 +02:00
import {createApp} from 'vue';
2022-09-27 07:22:19 +02:00
import DiffFileTree from '../components/DiffFileTree.vue';
import DiffFileList from '../components/DiffFileList.vue';
2022-12-23 17:03:11 +01:00
export function initDiffFileTree() {
2022-10-01 16:26:38 +02:00
const el = document.getElementById('diff-file-tree');
2022-09-27 07:22:19 +02:00
if (!el) return;
2022-10-01 16:26:38 +02:00
const fileTreeView = createApp(DiffFileTree);
fileTreeView.mount(el);
2022-09-27 07:22:19 +02:00
2022-10-01 16:26:38 +02:00
const fileListElement = document.getElementById('diff-file-list');
2022-09-27 07:22:19 +02:00
if (!fileListElement) return;
2022-10-01 16:26:38 +02:00
const fileListView = createApp(DiffFileList);
fileListView.mount(fileListElement);
2022-09-27 07:22:19 +02:00
}