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.
17 lines
537 B
17 lines
537 B
import {createApp} from 'vue';
|
|
import DiffFileTree from '../components/DiffFileTree.vue';
|
|
import DiffFileList from '../components/DiffFileList.vue';
|
|
|
|
export default function initDiffFileTree() {
|
|
const el = document.getElementById('diff-file-tree');
|
|
if (!el) return;
|
|
|
|
const fileTreeView = createApp(DiffFileTree);
|
|
fileTreeView.mount(el);
|
|
|
|
const fileListElement = document.getElementById('diff-file-list');
|
|
if (!fileListElement) return;
|
|
|
|
const fileListView = createApp(DiffFileList);
|
|
fileListView.mount(fileListElement);
|
|
}
|
|
|